Fri, 15 Mar 2013 20:11:18 +0200
Initial commit
0 | 1 | #ifndef __BBOX_H__ |
2 | #define __BBOX_H__ | |
3 | ||
4 | #include "common.h" | |
5 | ||
6 | class bbox { | |
7 | public: | |
8 | vertex v0; | |
9 | vertex v1; | |
10 | ||
11 | bbox (); | |
12 | void calculate (); | |
13 | ||
14 | private: | |
15 | void checkVertex (vertex v); | |
16 | }; | |
17 | ||
18 | #endif |