home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBHyperboloid.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  642 b   |  25 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. #import "RIBQuadric.h"
  8.  
  9.  
  10. @interface RIBHyperboloid : RIBQuadric
  11. {
  12.   RtPoint point1, point2;
  13. }
  14.  
  15. - setPoint1:(RtPoint)newPoint1 point2:(RtPoint)newPoint2 
  16.      thetaMax:(RtFloat)newThetaMax
  17.      n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
  18.      printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
  19. - setPoint1:(RtPoint)newPoint1;
  20. - setPoint2:(RtPoint)newPoint2;
  21. - (RtPoint *)point1;
  22. - (RtPoint *)point2;
  23.  
  24. @end
  25.