TDME2 1.9.121
ConvexMesh.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <ext/reactphysics3d/src/collision/PolygonVertexArray.h>
6#include <ext/reactphysics3d/src/collision/PolyhedronMesh.h>
7
8#include <tdme/tdme.h>
12#include <tdme/math/Vector3.h>
14
15
16using std::vector;
17
25
26/**
27 * Convex mesh physics primitive
28 * @author Andreas Drewke
29 * @version $Id$
30 */
32 : public BoundingVolume
33{
34private:
35 vector<Vector3> vertices;
36 vector<int> facesVerticesCount;
37 vector<int> indices;
38
39 vector<reactphysics3d::PolygonVertexArray::PolygonFace> faces;
40 reactphysics3d::PolygonVertexArray* polygonVertexArray { nullptr };
41 reactphysics3d::PolyhedronMesh* polyhedronMesh { nullptr };
44
45
46 /**
47 * Public constructor
48 * @param vertices vertices
49 * @param facesVerticesCount faces vertices count
50 * @param indices indices
51 * @param scale scale
52 */
53 ConvexMesh(const vector<Vector3>& vertices, const vector<int>& facesVerticesCount, const vector<int>& indices, const Vector3& scale = Vector3(1.0f, 1.0f, 1.0f));
54
55 /**
56 * Checks if vertex lives on triangle plane
57 * @param triangle triangle
58 * @param vertex vertex
59 * @return if vertex lives on triangle plane
60 */
61 bool isVertexOnTrianglePlane(Triangle& triangle, const Vector3& vertex);
62
63 /**
64 * Checks if 2 triangles are adjacent
65 * @param triangle1 triangle 1
66 * @param triangle2 triangle 2
67 * @return if triangles are adjacent
68 */
69 bool areTrianglesAdjacent(Triangle& triangle1, Triangle& triangle2);
70
71 /**
72 * Create convex mesh
73 * Note: it also translates center into origin
74 * @param vertices vertices
75 * @param facesVerticesCount faces vertices count
76 * @param indices indices
77 * @param scale scale
78 */
79 void createConvexMesh(const vector<Vector3>& vertices, const vector<int>& facesVerticesCount, const vector<int>& indices, const Vector3& scale);
80
81public:
82 /**
83 * Public constructor
84 */
85 ConvexMesh();
86
87 /**
88 * Public constructor
89 * @param model model
90 * @param scale scale
91 */
92 ConvexMesh(Object3DModel* model, const Vector3& scale = Vector3(1.0f, 1.0f, 1.0f));
93
94 /**
95 * Public denstructor
96 */
98
99 // overridden methods
100 void setScale(const Vector3& scale) override;
101 BoundingVolume* clone() const override;
102
103 /**
104 * @return vertices
105 */
106 const vector<Vector3>& getVertices();
107
108};
Convex mesh physics primitive.
Definition: ConvexMesh.h:33
~ConvexMesh()
Public denstructor.
Definition: ConvexMesh.cpp:53
bool isVertexOnTrianglePlane(Triangle &triangle, const Vector3 &vertex)
Checks if vertex lives on triangle plane.
Definition: ConvexMesh.cpp:61
reactphysics3d::PolygonVertexArray * polygonVertexArray
Definition: ConvexMesh.h:40
bool areTrianglesAdjacent(Triangle &triangle1, Triangle &triangle2)
Checks if 2 triangles are adjacent.
Definition: ConvexMesh.cpp:76
reactphysics3d::PolyhedronMesh * polyhedronMesh
Definition: ConvexMesh.h:41
void createConvexMesh(const vector< Vector3 > &vertices, const vector< int > &facesVerticesCount, const vector< int > &indices, const Vector3 &scale)
Create convex mesh Note: it also translates center into origin.
Definition: ConvexMesh.cpp:86
void setScale(const Vector3 &scale) override
Set local scale.
Definition: ConvexMesh.cpp:386
const vector< Vector3 > & getVertices()
Definition: ConvexMesh.cpp:398
BoundingVolume * clone() const override
Clones this bounding volume.
Definition: ConvexMesh.cpp:393
vector< reactphysics3d::PolygonVertexArray::PolygonFace > faces
Definition: ConvexMesh.h:39
Triangle entity, this is not directly connectable with physics engine.
Definition: Triangle.h:19
3D vector 3 class
Definition: Vector3.h:22
Byte buffer class.
Definition: ByteBuffer.h:24
Float buffer class.
Definition: FloatBuffer.h:18
Integer buffer class.
Definition: IntBuffer.h:14