mirror of
https://github.com/AxioDL/zeus.git
synced 2025-07-03 03:35:57 +00:00
16 lines
296 B
C++
16 lines
296 B
C++
#pragma once
|
|
|
|
#include "zeus/CVector3f.hpp"
|
|
|
|
namespace zeus {
|
|
class CQuaternion;
|
|
|
|
class CEulerAngles : public CVector3f {
|
|
public:
|
|
CEulerAngles(float x, float y, float z) { assign(x, y, z); }
|
|
CEulerAngles(const CQuaternion& quat);
|
|
CEulerAngles(const CTransform& xf);
|
|
};
|
|
|
|
} // namespace zeus
|