5#include <ext/reactphysics3d/src/collision/PolygonVertexArray.h>
6#include <ext/reactphysics3d/src/collision/PolyhedronMesh.h>
39 vector<reactphysics3d::PolygonVertexArray::PolygonFace>
faces;
Bounding volume interface.
Convex mesh physics primitive.
~ConvexMesh()
Public denstructor.
bool isVertexOnTrianglePlane(Triangle &triangle, const Vector3 &vertex)
Checks if vertex lives on triangle plane.
reactphysics3d::PolygonVertexArray * polygonVertexArray
vector< int > facesVerticesCount
bool areTrianglesAdjacent(Triangle &triangle1, Triangle &triangle2)
Checks if 2 triangles are adjacent.
reactphysics3d::PolyhedronMesh * polyhedronMesh
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.
ByteBuffer * verticesByteBuffer
void setScale(const Vector3 &scale) override
Set local scale.
ConvexMesh()
Public constructor.
const vector< Vector3 > & getVertices()
vector< Vector3 > vertices
BoundingVolume * clone() const override
Clones this bounding volume.
vector< reactphysics3d::PolygonVertexArray::PolygonFace > faces
ByteBuffer * indicesByteBuffer
Triangle entity, this is not directly connectable with physics engine.