home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBRotate.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  436 b   |  19 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 "RIBCommand.h"
  8.  
  9. @interface RIBRotate:RIBCommand
  10. {
  11.   RtFloat  angle, dx, dy, dz;
  12.   RtMatrix  myMatrix;
  13. }
  14.  
  15. - setAngle:(RtFloat)newAngle dx:(RtFloat)newDX dy:(RtFloat)newDY dz:(RtFloat)newDZ;
  16. - getAngle:(RtFloat *)anglePtr dx:(RtFloat *)dxPtr dy:(RtFloat *)dyPtr dz:(RtFloat *)dzPtr;
  17.  
  18. @end
  19.