bbox.h

changeset 0
c51cce84a9ac
child 30
31ff9aabd506
equal deleted inserted replaced
-1:000000000000 0:c51cce84a9ac
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

mercurial