home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
-
- #import <appkit/appkit.h>
- #import <3Dkit/3Dkit.h>
- #import "Protocol_WWRenderable.h"
-
- @interface RIBCommandList:List < WWRenderable >
- {
- char *name;
- char **globalVarsArgv;
- int globalVarsArgc;
- RtBound boundingBox;
- BOOL dirtyBoundingBox;
- id myShape; // this is a pointer to the shape which has this
- // RIBCommand embedded in it. In order to calculate it's
- // bounding box, it needs access to the 4x4s of this shape.
- char *eveCode;
- }
-
- - setEveCodeArgc:(int)argc argv:(char **)argv;
- - setMyShape:shape;
- - shape;
-
- @end
-