From ff07b43bfac8a9b00e648fd3efc1b26f6dcf35d1 Mon Sep 17 00:00:00 2001 From: Tal Hayon Date: Tue, 9 May 2023 10:41:27 +0300 Subject: J3DJoint OK --- include/JSystem/J3DGraphAnimator/J3DJoint.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/JSystem/J3DGraphAnimator') diff --git a/include/JSystem/J3DGraphAnimator/J3DJoint.h b/include/JSystem/J3DGraphAnimator/J3DJoint.h index dcb89894ac..12f2da776c 100644 --- a/include/JSystem/J3DGraphAnimator/J3DJoint.h +++ b/include/JSystem/J3DGraphAnimator/J3DJoint.h @@ -24,6 +24,7 @@ public: static J3DMtxBuffer* getMtxBuffer() { return mMtxBuffer; } static J3DJoint* getJoint() { return mJoint; } + static void setJoint(J3DJoint* joint) { mJoint = joint; } static J3DMtxBuffer* mMtxBuffer; static J3DJoint* mJoint; @@ -63,7 +64,11 @@ public: Vec* getMax() { return &mMax; } Vec* getMin() { return &mMin; } void setCallBack(J3DJointCallBack callback) { mCallBack = callback; } + J3DJointCallBack getCallBack() { return mCallBack; } void setMtxCalc(J3DMtxCalc* i_mtxCalc) { mMtxCalc = i_mtxCalc; } + J3DMtxCalc* getMtxCalc() { return mMtxCalc; } + J3DMtxCalc* getCurrentMtxCalc() { return mCurrentMtxCalc; }; + J3DJoint* getChild() { return mChild; } static J3DMtxCalc* mCurrentMtxCalc; -- cgit v1.2.3