mirror of https://github.com/tongzx/nt5src
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
24 lines
296 B
#ifndef ROUNDWALL_H
|
|
#define ROUNDWALL_H
|
|
|
|
class Roundwall {
|
|
public:
|
|
Roundwall();
|
|
~Roundwall() {};
|
|
|
|
void draw();
|
|
|
|
void set_divisions(int d);
|
|
|
|
float height;
|
|
float radius;
|
|
|
|
private:
|
|
int divisions;
|
|
float *sint, *cost;
|
|
|
|
void delete_tables();
|
|
void compute_tables();
|
|
};
|
|
|
|
#endif
|