TDME2  1.9.200
Joint.cpp
Go to the documentation of this file.
2 
3 #include <tdme/tdme.h>
4 #include <tdme/math/Matrix4x4.h>
5 
8 
9 Joint::Joint()
10 {
11  this->nodeId.clear();
12  this->bindMatrix.identity();
13 }
14 
15 Joint::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
Matrix4x4 class representing matrix4x4 mathematical structure and operations for 3d space.
Definition: Matrix4x4.h:23
Matrix4x4 & identity()
Creates identity matrix.
Definition: Matrix4x4.h:158