TDME2 1.9.121
Face.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
8
9using std::array;
10
12
13/**
14 * Represents a model face, consisting of vertex, normal, tangent and bitangent vectors, indices and texture coordinate
15 * @author andreas.drewke
16 * @version $Id$
17 */
19{
21
22private:
23 Node* node { nullptr };
24 array<int32_t, 3> vertexIndices {{ -1, -1, -1 }};
25 array<int32_t, 3> normalIndices {{ -1, -1, -1 }};
26 array<int32_t, 3> textureCoordinateIndices {{ -1, -1, -1 }};
27 array<int32_t, 3> tangentIndices {{ -1, -1, -1 }};
28 array<int32_t, 3> bitangentIndices {{ -1, -1, -1 }};
29
30 /**
31 * Prepared this face for indexed rendering
32 * @param indices indices
33 */
34 void setIndexedRenderingIndices(const array<int32_t, 3>& indices);
35
36public:
37 /**
38 * Public constructor
39 */
40 Face();
41
42 /**
43 * Public constructor, requires vertex, normals indices
44 * we only support triangulated faces
45 * @param node model
46 * @param vi0 vertex index 0
47 * @param vi1 vertex index 1
48 * @param vi2 vertex index 2
49 * @param ni0 normal index 0
50 * @param ni1 normal index 1
51 * @param ni2 normal index 2
52 */
53 Face(Node* node, int32_t vi0, int32_t vi1, int32_t vi2, int32_t ni0, int32_t ni1, int32_t ni2);
54
55 /**
56 * Public constructor, requires vertex, normals indices, texture coordinate indices
57 * we only support triangulated faces
58 * @param node model
59 * @param vi0 vertex index 0
60 * @param vi1 vertex index 1
61 * @param vi2 vertex index 2
62 * @param ni0 normal index 0
63 * @param ni1 normal index 1
64 * @param ni2 normal index 2
65 * @param vt0 texture coordinate index 0
66 * @param vt1 texture coordinate index 1
67 * @param vt2 texture coordinate index 2
68 */
69 Face(Node* node, int32_t vi0, int32_t vi1, int32_t vi2, int32_t ni0, int32_t ni1, int32_t ni2, int32_t vt0, int32_t vt1, int32_t vt2);
70
71 /**
72 * @return node
73 */
74 inline Node* getNode() const {
75 return node;
76 }
77
78 /**
79 * @return vertex indices
80 */
81 inline const array<int32_t, 3>& getVertexIndices() const {
82 return vertexIndices;
83 }
84
85 /**
86 * @return normal indices
87 */
88 inline const array<int32_t, 3>& getNormalIndices() const {
89 return normalIndices;
90 }
91
92 /**
93 * Set normal indices
94 * @param ni0 ni0
95 * @param ni1 ni1
96 * @param ni2 ni2
97 */
98 void setNormalIndices(int32_t ni0, int32_t ni1, int32_t ni2);
99
100 /**
101 * Set up optional texture coordinate indices
102 * @param vt0 vtX
103 * @param vt1 vtY
104 * @param vt2 vtZ
105 */
106 void setTextureCoordinateIndices(int32_t vt0, int32_t vt1, int32_t vt2);
107
108 /**
109 * @return texture coordinate indices or null (optional)
110 */
111 inline const array<int32_t, 3>& getTextureCoordinateIndices() const {
113 }
114
115 /**
116 * Set tangent indices
117 * @param ti0 ti0
118 * @param ti1 ti1
119 * @param ti2 ti2
120 */
121 void setTangentIndices(int32_t ti0, int32_t ti1, int32_t ti2);
122
123 /**
124 * @return tangent indices
125 */
126 inline const array<int32_t, 3>& getTangentIndices() const {
127 return tangentIndices;
128 }
129
130 /**
131 * Set bitangent indices
132 * @param bi0 bi0
133 * @param bi1 bi1
134 * @param bi2 bi2
135 */
136 void setBitangentIndices(int32_t bi0, int32_t bi1, int32_t bi2);
137
138 /**
139 * @return bi tangent indices
140 */
141 inline const array<int32_t, 3>& getBitangentIndices() const {
142 return bitangentIndices;
143 }
144
145};
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Definition: Face.h:19
array< int32_t, 3 > textureCoordinateIndices
Definition: Face.h:26
void setIndexedRenderingIndices(const array< int32_t, 3 > &indices)
Prepared this face for indexed rendering.
Definition: Face.cpp:66
array< int32_t, 3 > vertexIndices
Definition: Face.h:24
void setNormalIndices(int32_t ni0, int32_t ni1, int32_t ni2)
Set normal indices.
Definition: Face.cpp:38
void setTextureCoordinateIndices(int32_t vt0, int32_t vt1, int32_t vt2)
Set up optional texture coordinate indices.
Definition: Face.cpp:45
Face()
Public constructor.
Definition: Face.cpp:9
void setTangentIndices(int32_t ti0, int32_t ti1, int32_t ti2)
Set tangent indices.
Definition: Face.cpp:52
array< int32_t, 3 > tangentIndices
Definition: Face.h:27
const array< int32_t, 3 > & getNormalIndices() const
Definition: Face.h:88
array< int32_t, 3 > normalIndices
Definition: Face.h:25
void setBitangentIndices(int32_t bi0, int32_t bi1, int32_t bi2)
Set bitangent indices.
Definition: Face.cpp:59
const array< int32_t, 3 > & getBitangentIndices() const
Definition: Face.h:141
const array< int32_t, 3 > & getTextureCoordinateIndices() const
Definition: Face.h:111
const array< int32_t, 3 > & getVertexIndices() const
Definition: Face.h:81
const array< int32_t, 3 > & getTangentIndices() const
Definition: Face.h:126
array< int32_t, 3 > bitangentIndices
Definition: Face.h:28
Node * getNode() const
Definition: Face.h:74
Model node.
Definition: Node.h:31
Model tools functions class.
Definition: ModelTools.h:38