ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/instance.h
Revision: 1.2
Committed: Tue Oct 24 13:57:00 1989 UTC (34 years, 6 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.1: +0 -3 lines
Log Message:
deleted GET_ macros

File Contents

# Content
1 /* Copyright (c) 1988 Regents of the University of California */
2
3 /* SCCSid "$SunId$ LBL" */
4
5 /*
6 * instance.h - header file for routines using octree objects.
7 *
8 * 11/10/88
9 */
10
11 #include "octree.h"
12
13 typedef struct scene {
14 char *name; /* octree name */
15 int ldflags; /* what was loaded */
16 CUBE scube; /* scene cube */
17 struct scene *next; /* next in list */
18 } SCENE; /* loaded octree */
19
20 typedef struct {
21 struct {
22 double sca; /* scaling */
23 double xfm[4][4]; /* transform */
24 } f, b; /* forward and backward */
25 SCENE *obj; /* loaded object */
26 } INSTANCE; /* instance of octree */
27
28 extern SCENE *getscene();
29
30 extern INSTANCE *getinstance();