J3DUClipper halfway

This commit is contained in:
Jasper St. Pierre
2023-10-10 23:48:46 -07:00
parent 282de23ae6
commit f63b762c8d
4 changed files with 160 additions and 18 deletions
+2 -2
View File
@@ -124,8 +124,8 @@ public:
J3DMaterial* getMesh() { return mMesh; }
u16 getJntNo() const { return mJntNo; }
u8 getKind() const { return mKind; }
u8 getMtxType() const { return getKind() >> 4; }
u8 getKind() const { return mKind & 0x0F; }
u8 getMtxType() const { return mKind >> 4; }
u8 getScaleCompensate() const { return mScaleCompensate; }
void setCurrentMtxCalc(J3DMtxCalc* pMtxCalc) { mCurrentMtxCalc = pMtxCalc; }
J3DTransformInfo& getTransformInfo() { return mTransformInfo; }