12345678910111213141516171819202122232425262728293031323334353637383940 |
-
-
- #ifndef _BOUNDINGVOLUME_H_
- #define _BOUNDINGVOLUME_H_
-
- #include <MatMath.h>
-
-
- class BoundingSphere {
- public:
- vec3_t mCenter;
- vec_t mRadius;
- };
-
-
- class BoundingBox {
- public:
- vec3_t mMin;
- vec3_t mMax;
- };
-
-
- class BoundingVolume {
- public:
- BoundingSphere mSphere;
- BoundingBox mBox;
- };
-
- #endif
|