TDME2  1.9.200
JointWeight.cpp
Go to the documentation of this file.
1 #include <tdme/tdme.h>
3 
5 
6 JointWeight::JointWeight()
7 {
8  this->jointIndex = -1;
9  this->weightIndex = -1;
10 }
11 
12 JointWeight::JointWeight(int32_t jointIndex, int32_t weightIndex)
13 {
14  this->jointIndex = jointIndex;
15  this->weightIndex = weightIndex;
16 }
JointWeight()
Public constructor.
Definition: JointWeight.cpp:6