goat3d

view src/aabox.h @ 79:a42f6cd4e2fa

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 08 May 2014 19:30:49 +0300
parents
children 70b7c41a4f17
line source
1 #ifndef AABOX_H_
2 #define AABOX_H_
4 #include <vmath/vmath.h>
6 namespace g3dimpl {
8 class AABox {
9 public:
10 Vector3 bmin, bmax;
12 AABox();
13 AABox(const Vector3 &b0, const Vector3 &b1);
14 };
16 AABox aabox_union(const AABox &a, const AABox &b);
18 }
20 #endif // AABOX_H_