home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Graphics / 2D_3D / ShaderInspector / Source / SimpleCamera.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-02  |  454 b   |  28 lines

  1. //    Some portions of this code are Copyright 1992  Thomas A. Dilligan
  2. //        All Rights Reserved
  3. //
  4. // For best results, set tabstop=4
  5.  
  6. #import <3Dkit/3Dkit.h>
  7. #import <appkit/appkit.h>
  8. #import "SimpleShape.h"
  9.  
  10. #ifndef SIMPLECAMERAH
  11. #define SIMPLECAMERAH
  12.  
  13. #define TO_CAMERA 0
  14. #define TO_WORLD  1
  15.  
  16. @interface SimpleCamera:N3DCamera
  17. {
  18.     id    theRotator;
  19.     id    rotoMatrix;
  20.     int    rendering;
  21.     id    rprButton;
  22.     char    origionalTitle[256];
  23. }
  24.  
  25. - displayPhotoreal;
  26. @end
  27.  
  28. #endif