Ignition Common

API Reference

3.9.0
SubMesh.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef IGNITION_COMMON_SUBMESH_HH_
18 #define IGNITION_COMMON_SUBMESH_HH_
19 
20 #include <memory>
21 #include <string>
22 #include <vector>
23 
24 #include <ignition/math/Vector3.hh>
25 #include <ignition/math/Vector2.hh>
26 
28 #include <ignition/common/graphics/Export.hh>
30 
31 namespace ignition
32 {
33  namespace common
34  {
35  class SubMeshPrivate;
36  class Material;
37  class NodeAssignment;
38 
40  class IGNITION_COMMON_GRAPHICS_VISIBLE SubMesh
41  {
43  public: enum PrimitiveType
44  {
61  TRISTRIPS
62  };
63 
65  public: SubMesh();
66 
69  public: explicit SubMesh(const std::string &_name);
70 
73  public: SubMesh(const SubMesh &_other);
74 
76  public: virtual ~SubMesh();
77 
80  public: void SetName(const std::string &_name);
81 
84  public: std::string Name() const;
85 
88  public: void SetPrimitiveType(PrimitiveType _type);
89 
92  public: PrimitiveType SubMeshPrimitiveType() const;
93 
96  public: void AddIndex(const unsigned int _index);
97 
100  public: void AddVertex(const ignition::math::Vector3d &_v);
101 
106  public: void AddVertex(const double _x, const double _y, const double _z);
107 
110  public: void AddNormal(const ignition::math::Vector3d &_n);
111 
116  public: void AddNormal(const double _x, const double _y, const double _z);
117 
125  public: void AddTexCoord(const double _u, const double _v);
126 
133  public: void AddTexCoord(const ignition::math::Vector2d &_uv);
134 
139  public: void AddTexCoordBySet(double _u, double _v,
140  unsigned int _setIndex);
141 
146  public: void AddTexCoordBySet(const ignition::math::Vector2d &_uv,
147  unsigned int _setIndex);
148 
153  public: void AddNodeAssignment(const unsigned int _vertex,
154  const unsigned int _node,
155  const float _weight);
161  public: ignition::math::Vector3d Vertex(const unsigned int _index) const;
162 
166  public: void SetVertex(const unsigned int _index,
167  const ignition::math::Vector3d &_v);
168 
174  public: ignition::math::Vector3d Normal(const unsigned int _index) const;
175 
179  public: void SetNormal(const unsigned int _index,
180  const ignition::math::Vector3d &_n);
181 
187  public: ignition::math::Vector2d TexCoord(
188  const unsigned int _index) const;
189 
197  public: ignition::math::Vector2d TexCoordBySet(
198  unsigned int _index,
199  unsigned int _setIndex) const;
200 
207  public: void SetTexCoord(const unsigned int _index,
208  const ignition::math::Vector2d &_uv);
209 
214  public: void SetTexCoordBySet(unsigned int _index,
215  const ignition::math::Vector2d &_uv,
216  unsigned int _setIdex);
217 
221  public: int Index(const unsigned int _index) const;
222 
226  public: void SetIndex(const unsigned int _index,
227  const unsigned int _i);
228 
235  public: NodeAssignment NodeAssignmentByIndex(
236  const unsigned int _index) const;
237 
240  public: ignition::math::Vector3d Max() const;
241 
244  public: ignition::math::Vector3d Min() const;
245 
248  public: unsigned int VertexCount() const;
249 
252  public: unsigned int NormalCount() const;
253 
256  public: unsigned int IndexCount() const;
257 
265  public: unsigned int TexCoordCount() const;
266 
271  public: unsigned int TexCoordCountBySet(unsigned int _setIndex) const;
272 
275  public: unsigned int TexCoordSetCount() const;
276 
279  public: unsigned int NodeAssignmentsCount() const;
280 
283  public: unsigned int MaxIndex() const;
284 
288  public: void SetMaterialIndex(const unsigned int _index);
289 
292  public: unsigned int MaterialIndex() const;
293 
297  public: bool HasVertex(const ignition::math::Vector3d &_v) const;
298 
304  public: bool HasVertex(const unsigned int _index) const;
305 
311  public: bool HasNormal(const unsigned int _index) const;
312 
323  public: bool HasTexCoord(const unsigned int _index) const;
324 
331  public: bool HasTexCoordBySet(unsigned int _index, unsigned int _setIndex)
332  const;
333 
339  public: bool HasNodeAssignment(const unsigned int _index) const;
340 
344  public: int IndexOfVertex(const ignition::math::Vector3d &_v) const;
345 
349  public: void FillArrays(double **_vertArr, int **_indexndArr) const;
350 
352  public: void RecalculateNormals();
353 
357  public: void GenSphericalTexCoord(
358  const ignition::math::Vector3d &_center);
359 
364  public: void GenSphericalTexCoordBySet(
365  const ignition::math::Vector3d &_center,
366  unsigned int _setIndex);
367 
370  public: void Scale(const ignition::math::Vector3d &_factor);
371 
374  public: void Scale(const double &_factor);
375 
379  public: void Center(const ignition::math::Vector3d &_center =
381 
384  public: void Translate(const ignition::math::Vector3d &_vec);
385 
397  public: double Volume() const;
398 
401  private: std::unique_ptr<SubMeshPrivate> dataPtr;
403  };
404 
407  class IGNITION_COMMON_GRAPHICS_VISIBLE NodeAssignment
408  {
410  public: NodeAssignment();
411 
413  public: unsigned int vertexIndex;
414 
416  public: unsigned int nodeIndex;
417 
420  public: float weight;
421  };
422  }
423 }
424 
425 #endif
unsigned int nodeIndex
Node (or bone) index.
Definition: SubMesh.hh:416
#define IGN_COMMON_WARN_RESUME__DLL_INTERFACE_MISSING
Definition: SuppressWarning.hh:67
Connected lines. 2 vertices for the first line and every vertex specified afterwards creates a new li...
Definition: SubMesh.hh:51
STL class.
Line. 2 vertices per line.
Definition: SubMesh.hh:48
float weight
The weight (between 0 and 1). This determines how much the node (bone) affects the vertex in animatio...
Definition: SubMesh.hh:420
Point. 1 vertex per point.
Definition: SubMesh.hh:46
PrimitiveType
An enumeration of the geometric mesh primitives.
Definition: SubMesh.hh:43
A child mesh.
Definition: SubMesh.hh:40
unsigned int vertexIndex
Index of the vertex.
Definition: SubMesh.hh:413
Connected triangle in fan shape. 3 vertices for the first triangle and every vertex specified afterwa...
Definition: SubMesh.hh:57
static const Vector3 Zero
Forward declarations for the common classes.
Vertex to node weighted assignement for skeleton animation visualization.
Definition: SubMesh.hh:407
Triangle type. 3 vertices per triangle.
Definition: SubMesh.hh:53
#define IGN_COMMON_WARN_IGNORE__DLL_INTERFACE_MISSING
Microsoft Visual Studio does not automatically export the interface information for member variables ...
Definition: SuppressWarning.hh:64