Mon, 18 Mar 2013 12:15:23 +0200
Deleted scanner.cpp (don't need it), merged model.cpp into io.cpp. Renamed LDForgeWindow to just ForgeWindow since I want the LD* prefix only be given to LDObject derivatives.
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 |