TDME2 1.9.121
Joint.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9
11
12using std::string;
13
14/**
15 * Joint / Bone
16 * @author andreas.drewke
17 */
19{
20private:
21 string nodeId;
23public:
24 /**
25 * Public constructor
26 */
27 Joint();
28
29 /**
30 * Public constructor
31 * @param nodeId node id
32 */
33 Joint(const string& nodeId);
34
35 /**
36 * Associated node or bone id
37 * @return node id
38 */
39 inline const string& getNodeId() const {
40 return nodeId;
41 }
42
43 /**
44 * Bind matrix
45 * @return matrix
46 */
47 inline const Matrix4x4& getBindMatrix() const {
48 return bindMatrix;
49 }
50
51 /**
52 * Bind matrix
53 * @return matrix
54 */
55 inline void setBindMatrix(const Matrix4x4& bindMatrix) {
56 this->bindMatrix = bindMatrix;
57 }
58
59};
Joint / Bone.
Definition: Joint.h:19
void setBindMatrix(const Matrix4x4 &bindMatrix)
Bind matrix.
Definition: Joint.h:55
Matrix4x4 bindMatrix
Definition: Joint.h:22
const Matrix4x4 & getBindMatrix() const
Bind matrix.
Definition: Joint.h:47
const string & getNodeId() const
Associated node or bone id.
Definition: Joint.h:39
Joint()
Public constructor.
Definition: Joint.cpp:9
4x4 3D Matrix class
Definition: Matrix4x4.h:24