ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/data.h
Revision: 1.1
Committed: Thu Feb 2 10:41:13 1989 UTC (35 years, 3 months ago) by greg
Content type: text/plain
Branch: MAIN
Log Message:
Initial revision

File Contents

# Content
1 /* Copyright (c) 1986 Regents of the University of California */
2
3 /* SCCSid "$SunId$ LBL" */
4
5 /*
6 * data.h - header file for routines which interpolate data.
7 *
8 * 6/4/86
9 */
10
11 #define MAXDIM 8 /* maximum dimensions for data array */
12
13 #define DATATYPE float /* single precision to save space */
14
15 #define DSCANF "%f" /* scan format for DATATYPE */
16
17 typedef struct datarray {
18 char *name; /* name of our data */
19 int nd; /* number of dimensions */
20 struct {
21 double org, siz; /* coordinate domain */
22 int ne; /* number of elements */
23 } dim[MAXDIM]; /* dimension specifications */
24 DATATYPE *arr; /* the data */
25 struct datarray *next; /* next array in list */
26 } DATARRAY; /* a data array */
27
28 extern DATARRAY *getdata(), *getpict();
29
30 extern double datavalue();