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

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