prime/include/MetroidPrime/CAxisAngle.hpp
Henrique Gemignani Passos Lima 16e4de9bfe Implement CScriptSpecialFunction::ThinkSpinnerController
Former-commit-id: d26a30f186a52104907d6194924da99e76dc5576
2022-10-03 14:55:03 +03:00

21 lines
386 B
C++

#ifndef _CAXISANGLE_HPP
#define _CAXISANGLE_HPP
#include "types.h"
#include "Kyoto/Math/CVector3f.hpp"
class CAxisAngle : CVector3f {
public:
CAxisAngle(f32 x, f32 y, f32 z) : CVector3f(x, y, z) {}
CAxisAngle(const CAxisAngle& other) : CVector3f(other) {}
static const CAxisAngle& Identity();
const CVector3f& GetVector() const;
};
CHECK_SIZEOF(CAxisAngle, 0xc)
#endif