Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
296 B

  1. #ifndef ROUNDWALL_H
  2. #define ROUNDWALL_H
  3. class Roundwall {
  4. public:
  5. Roundwall();
  6. ~Roundwall() {};
  7. void draw();
  8. void set_divisions(int d);
  9. float height;
  10. float radius;
  11. private:
  12. int divisions;
  13. float *sint, *cost;
  14. void delete_tables();
  15. void compute_tables();
  16. };
  17. #endif