prime/include/Kyoto/Math/CTransform4f.hpp

28 lines
412 B
C++
Raw Normal View History

#ifndef __CTRANSFORM4F_HPP__
#define __CTRANSFORM4F_HPP__
#include "types.h"
2022-08-09 23:03:51 +00:00
#include "Kyoto/Math/CVector3f.hpp"
class CTransform4f {
public:
CVector3f m0;
f32 posX;
CVector3f m1;
f32 posY;
CVector3f m2;
f32 posZ;
2022-08-13 01:26:00 +00:00
CTransform4f() {
// TODO
}
CTransform4f(const CTransform4f& other);
};
extern CTransform4f skIdentity4f;
2022-08-13 01:26:00 +00:00
CHECK_SIZEOF(CTransform4f, 0x30)
#endif // __CTRANSFORM4F_HPP__