prime/include/Kyoto/Math/CAABox.hpp

23 lines
377 B
C++
Raw Normal View History

2022-07-26 04:36:32 +00:00
#ifndef __CAABOX_HPP__
#define __CAABOX_HPP__
#include "Kyoto/Math/CVector3f.hpp"
class CAABox {
2022-08-13 01:26:00 +00:00
public:
CAABox() {
// TODO
}
2022-08-15 04:51:06 +00:00
CAABox(const CVector3f& min, const CVector3f& max);// : min(min), max(max) {}
2022-08-13 01:26:00 +00:00
static CAABox mskInvertedBox;
static CAABox mskNullBox;
private:
CVector3f min;
CVector3f max;
2022-07-26 04:36:32 +00:00
};
2022-08-13 01:26:00 +00:00
CHECK_SIZEOF(CAABox, 0x18)
2022-07-26 04:36:32 +00:00
#endif // __CAABOX_HPP__