TDME2
1.9.121
src
tdme
engine
model
Joint.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/engine/model/fwd-tdme.h
>
7
#include <
tdme/math/fwd-tdme.h
>
8
#include <
tdme/math/Matrix4x4.h
>
9
10
using
tdme::math::Matrix4x4
;
11
12
using
std::string;
13
14
/**
15
* Joint / Bone
16
* @author andreas.drewke
17
*/
18
class
tdme::engine::model::Joint
final
19
{
20
private
:
21
string
nodeId
;
22
Matrix4x4
bindMatrix
;
23
public
:
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
};
Matrix4x4.h
tdme::engine::model::Joint
Joint / Bone.
Definition:
Joint.h:19
tdme::engine::model::Joint::nodeId
string nodeId
Definition:
Joint.h:21
tdme::engine::model::Joint::setBindMatrix
void setBindMatrix(const Matrix4x4 &bindMatrix)
Bind matrix.
Definition:
Joint.h:55
tdme::engine::model::Joint::bindMatrix
Matrix4x4 bindMatrix
Definition:
Joint.h:22
tdme::engine::model::Joint::getBindMatrix
const Matrix4x4 & getBindMatrix() const
Bind matrix.
Definition:
Joint.h:47
tdme::engine::model::Joint::getNodeId
const string & getNodeId() const
Associated node or bone id.
Definition:
Joint.h:39
tdme::engine::model::Joint::Joint
Joint()
Public constructor.
Definition:
Joint.cpp:9
tdme::math::Matrix4x4
4x4 3D Matrix class
Definition:
Matrix4x4.h:24
fwd-tdme.h
fwd-tdme.h
tdme.h
Generated by
1.9.3