From d9c2ffe6190d6342bf00328b30bdaa67c30ffee3 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Tue, 26 Aug 2025 17:43:02 -0400 Subject: J3DModel inlines --- include/JSystem/J3DGraphAnimator/J3DModelData.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/JSystem/J3DGraphAnimator') diff --git a/include/JSystem/J3DGraphAnimator/J3DModelData.h b/include/JSystem/J3DGraphAnimator/J3DModelData.h index 24f3e30c..39d8efdc 100644 --- a/include/JSystem/J3DGraphAnimator/J3DModelData.h +++ b/include/JSystem/J3DGraphAnimator/J3DModelData.h @@ -71,8 +71,10 @@ public: u32 getModelDataType() const { return mJointTree.getModelDataType(); } const J3DModelHierarchy* getHierarchy() const { return mJointTree.getHierarchy(); } void setHierarchy(J3DModelHierarchy* hierarchy) { mJointTree.setHierarchy(hierarchy); } + J3DMtxCalc* getBasicMtxCalc() { return mJointTree.getBasicMtxCalc(); } void setBasicMtxCalc(J3DMtxCalc* calc) { mJointTree.setBasicMtxCalc(calc); } void setModelDataType(u32 type) { mJointTree.setModelDataType(type); } + J3DJoint* getRootNode() { return mJointTree.getRootNode(); } GXColor* getVtxColorArray(u8 idx) const { return mVertexData.getVtxColorArray(idx); } bool checkFlag(u32 flag) const { return (mFlags & flag) ? true : false; } u32 getFlag() const { return mFlags; } @@ -109,10 +111,6 @@ public: } const void* getBinary() { return mBinary; } - // TODO - void getBasicMtxCalc() {} - void getRootNode() {} - private: friend class J3DModelLoader; -- cgit v1.2.3