home *** CD-ROM | disk | FTP | other *** search
/ Cutting-Edge 3D Game Programming with C++ / CE3DC++.ISO / BOOK / CHAP09 / 3DCLASS.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-17  |  585 b   |  35 lines

  1. //
  2. // File name: 3DClass.HPP
  3. //
  4. // Description: Assorted functions and variables
  5. //
  6. // Author: John De Goes
  7. //
  8. // Project: Cutting Edge 3D Game Programming
  9. //
  10.  
  11. #ifndef _3DCLASSHPP
  12. #define _3DCLASSHPP
  13.  
  14. #include <Stdio.h>
  15. #include <String.h>
  16.  
  17. #include "SinCos.HPP"
  18. #include "Point2D.HPP"
  19. #include "Point3D.HPP"
  20. #include "Vector3D.HPP"
  21. #include "Matrix3D.HPP"
  22. #include "ATypes.HPP"
  23. #include "Panel3D.HPP"
  24. #include "PolyObj.HPP"
  25.  
  26. #define PI 3.141592654
  27.  
  28. extern long *ZBuffer;
  29. extern long ZTrans;
  30. extern const double MINZ, MAXZ;
  31.  
  32. void InitMath ();
  33.  
  34. #endif
  35.