mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-25 19:35:34 +00:00
Retro seemingly avoided using the Dolphin typedefs in most places, opting to use int/uint instead. This likely means they didn't use u8/s8/u16/s16/etc either. Former-commit-id: 133326ae406a0ebc76f56f8bcb489fda280be2be
26 lines
452 B
C++
26 lines
452 B
C++
#ifndef _CMATRIX3F
|
|
#define _CMATRIX3F
|
|
|
|
#include "types.h"
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
class CMatrix3f {
|
|
static const CMatrix3f sIdentity;
|
|
|
|
public:
|
|
CMatrix3f(const CMatrix3f&);
|
|
const CMatrix3f& operator=(const CMatrix3f& other);
|
|
|
|
static const CMatrix3f& Identity() { return sIdentity; }
|
|
|
|
private:
|
|
// TODO maybe individual floats
|
|
CVector3f m0;
|
|
CVector3f m1;
|
|
CVector3f m2;
|
|
};
|
|
CHECK_SIZEOF(CMatrix3f, 0x24);
|
|
|
|
#endif // _CMATRIX3F
|