home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / BackspaceViews / Teapot / TeapotView.h < prev    next >
Encoding:
Text File  |  1992-06-10  |  430 b   |  28 lines

  1. #import <3Dkit/3Dkit.h>
  2. #import "Thinker.h"
  3.  
  4. @interface TeapotView:N3DCamera
  5. {
  6.     id teapot;
  7.     id teapotsBox;
  8.     id inspectorPanel;
  9.     float dx, dy, dz;
  10.     id theShader;
  11.     RtPoint rotationAxis;
  12.     float theta;
  13.  
  14.     id resolutionTextField;
  15.     id resolutionSlider;
  16.     id surfaceMatrix;
  17.     int surfaceMatrixSelection;
  18.     id colorWell;
  19. }
  20.  
  21. - setResolutionFrom:sender;
  22. - setColorFrom:sender;
  23. - getTeapotColor;
  24. - setSurfaceType:sender;
  25. - getSurfaceType;
  26.  
  27. @end
  28.