mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-11 06:27:50 +00:00
14
include/MetroidPrime/CEulerAngles.hpp
Normal file
14
include/MetroidPrime/CEulerAngles.hpp
Normal 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
|
||||
Reference in New Issue
Block a user