mirror of https://github.com/AxioDL/zeus.git
Add CAABox::skNullBox
This commit is contained in:
parent
cfc5d55419
commit
954978454b
|
@ -40,6 +40,7 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
static const CAABox skInvertedBox;
|
static const CAABox skInvertedBox;
|
||||||
|
static const CAABox skNullBox;
|
||||||
|
|
||||||
CVector3f m_min;
|
CVector3f m_min;
|
||||||
CVector3f m_max;
|
CVector3f m_max;
|
||||||
|
|
|
@ -1,2 +1,10 @@
|
||||||
#include "zeus/CAABox.hpp"
|
#include "zeus/CAABox.hpp"
|
||||||
const zeus::CAABox zeus::CAABox::skInvertedBox = CAABox();
|
#include "zeus/CVector3f.hpp"
|
||||||
|
|
||||||
|
namespace zeus
|
||||||
|
{
|
||||||
|
|
||||||
|
const CAABox CAABox::skInvertedBox = CAABox();
|
||||||
|
const CAABox CAABox::skNullBox = CAABox(CVector3f::skZero, CVector3f::skZero);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
namespace zeus
|
namespace zeus
|
||||||
{
|
{
|
||||||
CQuaternion const CQuaternion::skNoRotation;
|
const CQuaternion CQuaternion::skNoRotation;
|
||||||
|
|
||||||
void CQuaternion::fromVector3f(const CVector3f& vec)
|
void CQuaternion::fromVector3f(const CVector3f& vec)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue