TDME2 1.9.121
Skinning.h
Go to the documentation of this file.
1
2#pragma once
3
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
13
14using std::map;
15using std::string;
16using std::vector;
17
20
21/**
22 * Skinning definition for nodes
23 * @author andreas.drewke
24 * @version $Id$
25 */
27{
28private:
29 vector<float> weights;
30 vector<Joint> joints;
31 vector<vector<JointWeight>> verticesJointsWeights;
32 map<string, Joint*> jointsByName;
33public:
34 /**
35 * Public constructor
36 */
37 Skinning();
38
39 /**
40 * @return weights
41 */
42 inline const vector<float>& getWeights() {
43 return weights;
44 }
45
46 /**
47 * Set up weights
48 * @param weights weights
49 */
50 void setWeights(const vector<float>& weights);
51
52 /**
53 * @return all joints
54 */
55 inline const vector<Joint>& getJoints() {
56 return joints;
57 }
58
59 /**
60 * Set up joints
61 * @param joints joints
62 */
63 void setJoints(const vector<Joint>& joints);
64
65 /**
66 * @return all vertex joints
67 */
68 inline const vector<vector<JointWeight>>& getVerticesJointsWeights() {
70 }
71
72 /**
73 * Sets up vertices joints weights
74 * @param verticesJointsWeights verticesJointsWeights
75 */
76 void setVerticesJointsWeights(const vector<vector<JointWeight>>& verticesJointsWeights);
77
78 /**
79 * Get joint by name
80 * @param name name
81 * @return joint
82 */
83 Joint* getJointByName(const string& name);
84
85private:
86
87 /**
88 * Set up joints by name
89 */
90 void setupJointsByName();
91};
Joint / Bone.
Definition: Joint.h:19
Skinning definition for nodes.
Definition: Skinning.h:27
map< string, Joint * > jointsByName
Definition: Skinning.h:32
const vector< Joint > & getJoints()
Definition: Skinning.h:55
vector< vector< JointWeight > > verticesJointsWeights
Definition: Skinning.h:31
Joint * getJointByName(const string &name)
Get joint by name.
Definition: Skinning.cpp:61
void setVerticesJointsWeights(const vector< vector< JointWeight > > &verticesJointsWeights)
Sets up vertices joints weights.
Definition: Skinning.cpp:42
vector< Joint > joints
Definition: Skinning.h:30
vector< float > weights
Definition: Skinning.h:29
void setWeights(const vector< float > &weights)
Set up weights.
Definition: Skinning.cpp:23
Skinning()
Public constructor.
Definition: Skinning.cpp:19
const vector< vector< JointWeight > > & getVerticesJointsWeights()
Definition: Skinning.h:68
const vector< float > & getWeights()
Definition: Skinning.h:42
void setupJointsByName()
Set up joints by name.
Definition: Skinning.cpp:53
void setJoints(const vector< Joint > &joints)
Set up joints.
Definition: Skinning.cpp:32