Sat, 16 Mar 2013 01:32:47 +0200
Added logf function to write to message log. Write warnings of unparsable files into the message log.
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 |