g1_vert.hh 758 B

123456789101112131415161718192021222324
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef G1_VERT_HH
  9. #define G1_VERT_HH
  10. #include "math/point.hh"
  11. #include "math/vector.hh"
  12. class g1_vert_class
  13. {
  14. public:
  15. i4_3d_point_class v; // x,y,z position of point
  16. i4_3d_vector normal; // normal of vert, used for lighting
  17. };
  18. #endif