mirror of https://github.com/AxioDL/zeus.git
21 lines
346 B
C++
21 lines
346 B
C++
#ifndef CEULERANGES_HPP
|
|
#define CEULERANGES_HPP
|
|
|
|
#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);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // CEULERANGES_HPP
|