mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-29 14:55:35 +00:00
21 lines
272 B
C++
21 lines
272 B
C++
#ifndef _CMATRIX3F_HPP
|
|
#define _CMATRIX3F_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
class CMatrix3f {
|
|
public:
|
|
// TODO
|
|
|
|
private:
|
|
// TODO maybe individual f32s
|
|
CVector3f m0;
|
|
CVector3f m1;
|
|
CVector3f m2;
|
|
};
|
|
CHECK_SIZEOF(CMatrix3f, 0x24);
|
|
|
|
#endif
|