TDME2 1.9.121
Joint.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
5
8
9Joint::Joint()
10{
11 this->nodeId.clear();
12 this->bindMatrix.identity();
13}
14
15Joint::Joint(const string& nodeId)
16{
17 this->nodeId = nodeId;
18 this->bindMatrix.identity();
19}
Joint / Bone.
Definition: Joint.h:19
Matrix4x4 bindMatrix
Definition: Joint.h:22
Joint()
Public constructor.
Definition: Joint.cpp:9
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326