Add a disaster called CEulerAngles

Former-commit-id: c93d6060e8
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-17 01:49:37 +03:00
parent 2fb748f25c
commit f52d22a620
3 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _CEULERANGLES
#define _CEULERANGLES
#include "Kyoto/Math/CVector3f.hpp"
class CQuaternion;
class CEulerAngles : public CVector3f {
public:
CEulerAngles(float x, float y, float z) : CVector3f(x, y, z) {}
static CEulerAngles FromQuaternion(const CQuaternion&);
};
#endif // _CEULERANGLES