TDME2 1.9.121
|
Convex mesh physics primitive. More...
#include <tdme/engine/primitives/ConvexMesh.h>
Public Member Functions | |
ConvexMesh () | |
Public constructor. More... | |
ConvexMesh (Object3DModel *model, const Vector3 &scale=Vector3(1.0f, 1.0f, 1.0f)) | |
Public constructor. More... | |
~ConvexMesh () | |
Public denstructor. More... | |
void | setScale (const Vector3 &scale) override |
Set local scale. More... | |
BoundingVolume * | clone () const override |
Clones this bounding volume. More... | |
const vector< Vector3 > & | getVertices () |
![]() | |
virtual | ~BoundingVolume () |
Destructor. More... | |
virtual void | fromTransformations (const Transformations &transformations) |
Transform bounding volume from given transformations. More... | |
const Vector3 & | getScale () |
Get local scale. More... | |
virtual void | setScale (const Vector3 &scale)=0 |
Set local scale. More... | |
const Vector3 & | getCenter () const |
const Vector3 & | getCenterTransformed () const |
BoundingBox & | getBoundingBoxTransformed () |
Get bounding box transformed. More... | |
virtual BoundingVolume * | clone () const =0 |
Clones this bounding volume. More... | |
Private Member Functions | |
ConvexMesh (const vector< Vector3 > &vertices, const vector< int > &facesVerticesCount, const vector< int > &indices, const Vector3 &scale=Vector3(1.0f, 1.0f, 1.0f)) | |
Public constructor. More... | |
bool | isVertexOnTrianglePlane (Triangle &triangle, const Vector3 &vertex) |
Checks if vertex lives on triangle plane. More... | |
bool | areTrianglesAdjacent (Triangle &triangle1, Triangle &triangle2) |
Checks if 2 triangles are adjacent. More... | |
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. More... | |
Private Attributes | |
vector< Vector3 > | vertices |
vector< int > | facesVerticesCount |
vector< int > | indices |
vector< reactphysics3d::PolygonVertexArray::PolygonFace > | faces |
reactphysics3d::PolygonVertexArray * | polygonVertexArray { nullptr } |
reactphysics3d::PolyhedronMesh * | polyhedronMesh { nullptr } |
ByteBuffer * | verticesByteBuffer { nullptr } |
ByteBuffer * | indicesByteBuffer { nullptr } |
Additional Inherited Members | |
![]() | |
void | computeBoundingBox () |
Compute bounding box. More... | |
![]() | |
Vector3 | scale |
Vector3 | center |
Vector3 | collisionShapeLocalTranslation |
reactphysics3d::CollisionShape * | collisionShape { nullptr } |
reactphysics3d::Transform | collisionShapeLocalTransform |
reactphysics3d::Transform | collisionShapeTransform |
reactphysics3d::AABB | collisionShapeAABB |
BoundingBox | boundingBoxTransformed |
Vector3 | centerTransformed |
|
private |
Public constructor.
vertices | vertices |
facesVerticesCount | faces vertices count |
indices | indices |
scale | scale |
Definition at line 379 of file ConvexMesh.cpp.
ConvexMesh | ( | ) |
Public constructor.
Definition at line 49 of file ConvexMesh.cpp.
ConvexMesh | ( | Object3DModel * | model, |
const Vector3 & | scale = Vector3(1.0f, 1.0f, 1.0f) |
||
) |
~ConvexMesh | ( | ) |
Public denstructor.
Definition at line 53 of file ConvexMesh.cpp.
Checks if 2 triangles are adjacent.
triangle1 | triangle 1 |
triangle2 | triangle 2 |
Definition at line 76 of file ConvexMesh.cpp.
|
overridevirtual |
Clones this bounding volume.
Implements BoundingVolume.
Definition at line 393 of file ConvexMesh.cpp.
|
private |
Create convex mesh Note: it also translates center into origin.
vertices | vertices |
facesVerticesCount | faces vertices count |
indices | indices |
scale | scale |
Definition at line 86 of file ConvexMesh.cpp.
const vector< Vector3 > & getVertices | ( | ) |
Definition at line 398 of file ConvexMesh.cpp.
Checks if vertex lives on triangle plane.
triangle | triangle |
vertex | vertex |
Definition at line 61 of file ConvexMesh.cpp.
|
overridevirtual |
Set local scale.
Implements BoundingVolume.
Definition at line 386 of file ConvexMesh.cpp.
|
private |
Definition at line 39 of file ConvexMesh.h.
|
private |
Definition at line 36 of file ConvexMesh.h.
|
private |
Definition at line 37 of file ConvexMesh.h.
|
private |
Definition at line 43 of file ConvexMesh.h.
|
private |
Definition at line 40 of file ConvexMesh.h.
|
private |
Definition at line 41 of file ConvexMesh.h.
|
private |
Definition at line 35 of file ConvexMesh.h.
|
private |
Definition at line 42 of file ConvexMesh.h.