home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBCommandList.h < prev    next >
Encoding:
Text File  |  1995-04-10  |  705 b   |  28 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5.  
  6. #import <appkit/appkit.h>
  7. #import <3Dkit/3Dkit.h>
  8. #import "Protocol_WWRenderable.h"
  9.  
  10. @interface RIBCommandList:List < WWRenderable >
  11. {
  12.   char       *name;
  13.   char       **globalVarsArgv;
  14.   int        globalVarsArgc;
  15.   RtBound    boundingBox;
  16.   BOOL       dirtyBoundingBox;
  17.   id myShape; // this is a pointer to the shape which has this
  18.               // RIBCommand embedded in it.  In order to calculate it's 
  19.               // bounding box, it needs access to the 4x4s of this shape.
  20.   char       *eveCode;
  21. }
  22.  
  23. - setEveCodeArgc:(int)argc argv:(char **)argv;
  24. - setMyShape:shape;
  25. - shape;
  26.  
  27. @end
  28.