Guest User

Untitled

a guest
Jun 24th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include "Tvector.h"
  2. class TGround
  3. {
  4. public:
  5. TVector _points[37]; // points in the surface of the ground
  6. TVector _normal; // normal of the ground
  7. public:
  8. // Default constructor
  9. TGround();
  10. // Function that draws the ground
  11. void DrawGround();
  12. };
Add Comment
Please, Sign In to add comment