This commit is contained in:
Phillip Stephens 2016-01-17 07:56:45 -08:00
parent 7f08bf47f1
commit 6256903a4d
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public:
ZE_DECLARE_ALIGNED_ALLOCATOR();
CQuaternion() : r(1.0f) {}
CQuaternion(float r, float x, float y, float z) : r(r), v(x, y, z){ this->r = r; }
CQuaternion(float r, float x, float y, float z) : v(x, y, z){ this->r = r; }
CQuaternion(float x, float y, float z) { fromVector3f(CVector3f(x, y, z)); }
CQuaternion(float r, const CVector3f& vec) : v(vec){ this->r = r;}
#if ZE_ATHENA_TYPES