ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/data.h
Revision: 1.3
Committed: Thu May 23 08:14:55 1991 UTC (32 years, 11 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -2 lines
Log Message:
changed MAXDIM to MAXDDIM to avoid conflict

File Contents

# User Rev Content
1 greg 1.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 greg 1.3 #define MAXDDIM 8 /* maximum dimensions for data array */
12 greg 1.1
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 greg 1.2 double *p; /* point locations */
24 greg 1.3 } dim[MAXDDIM]; /* dimension specifications */
25 greg 1.1 DATATYPE *arr; /* the data */
26     struct datarray *next; /* next array in list */
27     } DATARRAY; /* a data array */
28    
29     extern DATARRAY *getdata(), *getpict();
30    
31     extern double datavalue();