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 "RIBQuadric.h"
-
-
- @interface RIBCone : RIBQuadric
- {
- RtFloat height, radius;
- }
-
- - setHeight:(RtFloat)newHeight
- radius:(RtFloat)newRadius
- thetaMax:(RtFloat)newThetaMax
- n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
- printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
- - setHeight:(RtFloat)newHeight;
- - setRadius:(RtFloat)newRadius;
- - (RtFloat)height;
- - (RtFloat)radius;
-
- @end
-