home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / 2D_3D / Tree3D_3.1 / Source / Branch.h next >
Encoding:
Text File  |  1995-06-12  |  333 b   |  17 lines

  1. // Branch.h -- major constituent of tree
  2.  
  3. #import <3Dkit/3Dkit.h>
  4.  
  5. id globalShader;
  6.  
  7. @interface Branch:N3DShape
  8. {    id tree;
  9. }
  10. - addBranches :(int)levelsLeft inTree :tree;
  11. - setBoundingBox :(float)xMin :(float)xMax :(float)yMin :(float)yMax 
  12.                                                 :(float)zMin :(float)zMax;
  13. - renderSelf:(RtToken)context;
  14. - tree :treeArg;
  15.  
  16. @end
  17.