mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-14 18:46:07 +00:00
Start matching CScriptPlatform; more CScriptMazeNode
Former-commit-id: 135d63412c
This commit is contained in:
21
include/MetroidPrime/CAxisAngle.hpp
Normal file
21
include/MetroidPrime/CAxisAngle.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user