prime/include/MetroidPrime/CEulerAngles.hpp

15 lines
302 B
C++
Raw Normal View History

2022-10-16 22:49:37 +00:00
#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