prime/include/MetroidPrime/CAxisAngle.hpp
Luke Street 234afca6c2 clang-format pass
Former-commit-id: 6a979e343f6a88e4c9b78d3917c1fabfcb211a0a
2022-09-18 02:05:46 -04:00

22 lines
399 B
C++

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