TDME2 1.9.121
Static Public Member Functions | Static Private Member Functions | Static Private Attributes | List of all members
Primitives Class Referencefinal

Helper class to create models from physics primitive bounding volumes. More...

#include <tdme/utilities/Primitives.h>

Collaboration diagram for Primitives:
Collaboration graph

Static Public Member Functions

static ModelcreateBoundingBoxModel (BoundingBox *boundingBox, const string &id)
 Creates a model from bounding box. More...
 
static ModelcreateOrientedBoundingBoxModel (OrientedBoundingBox *orientedBoundingBox, const string &id)
 Creates a model from oriented bounding box. More...
 
static ModelcreateSphereModel (Sphere *sphere, const string &id, int32_t segmentsX, int32_t segmentsY)
 Creates a model from oriented bounding box. More...
 
static ModelcreateCapsuleModel (Capsule *capsule, const string &id, int32_t segmentsX, int32_t segmentsY)
 Creates a model from capsule. More...
 
static ModelcreateConvexMeshModel (ConvexMesh *mesh, const string &id)
 Creates a model from convex mesh. More...
 
static void setupConvexMeshModel (Model *model)
 Set up a convex mesh model. More...
 
static ModelcreateModel (BoundingBox *boundingVolume, const string &id)
 Creates a model from bounding volume. More...
 
static ModelcreateModel (BoundingVolume *boundingVolume, const string &id)
 Creates a model from bounding volume. More...
 

Static Private Member Functions

static reactphysics3d::Vector3 toRP3DVector3 (const Vector3 &vector)
 Converts a TDME2 vector to ReactPhysics3D vector. More...
 
static Vector3 transformVector3 (BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &vector)
 Transforms a given ReactPhysics3D vector with bounding volume transform. More...
 
static Vector3 transformVector3Normal (BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &normal)
 Transforms a given ReactPhysics3D vector with bounding volume transform. More...
 
static void setupConvexMeshMaterial (const map< string, Node * > &nodes, Material *material)
 Set up convex mesh material. More...
 

Static Private Attributes

static constexpr int32_t SPHERE_SEGMENTS_X { 20 }
 
static constexpr int32_t SPHERE_SEGMENTS_Y { 20 }
 
static constexpr int32_t CAPSULE_SEGMENTS_X { 20 }
 
static constexpr int32_t CAPSULE_SEGMENTS_Y { 20 }
 

Detailed Description

Helper class to create models from physics primitive bounding volumes.

Author
Andreas Drewke
Version
$Id$

Definition at line 33 of file Primitives.h.

Member Function Documentation

◆ createBoundingBoxModel()

Model * createBoundingBoxModel ( BoundingBox boundingBox,
const string &  id 
)
static

Creates a model from bounding box.

Parameters
boundingBoxbounding box
idid
Returns
model

Definition at line 64 of file Primitives.cpp.

◆ createCapsuleModel()

Model * createCapsuleModel ( Capsule capsule,
const string &  id,
int32_t  segmentsX,
int32_t  segmentsY 
)
static

Creates a model from capsule.

Parameters
capsulesphere
idid
segmentsXnumber of x segments
segmentsYnumber of y segments
Returns
model

Definition at line 334 of file Primitives.cpp.

◆ createConvexMeshModel()

Model * createConvexMeshModel ( ConvexMesh mesh,
const string &  id 
)
static

Creates a model from convex mesh.

Parameters
meshconvex mesh
idid
Returns
model

Definition at line 482 of file Primitives.cpp.

◆ createModel() [1/2]

Model * createModel ( BoundingBox boundingVolume,
const string &  id 
)
static

Creates a model from bounding volume.

Parameters
boundingVolumebounding volume
idid
Returns
model

Definition at line 529 of file Primitives.cpp.

◆ createModel() [2/2]

Model * createModel ( BoundingVolume boundingVolume,
const string &  id 
)
static

Creates a model from bounding volume.

Parameters
boundingVolumebounding box
idid
Returns
model

Definition at line 534 of file Primitives.cpp.

◆ createOrientedBoundingBoxModel()

Model * createOrientedBoundingBoxModel ( OrientedBoundingBox orientedBoundingBox,
const string &  id 
)
static

Creates a model from oriented bounding box.

Parameters
orientedBoundingBoxbounding box
idid
Returns
model

Definition at line 147 of file Primitives.cpp.

◆ createSphereModel()

Model * createSphereModel ( Sphere sphere,
const string &  id,
int32_t  segmentsX,
int32_t  segmentsY 
)
static

Creates a model from oriented bounding box.

Parameters
spheresphere
idid
segmentsXnumber of x segments
segmentsYnumber of y segments
Returns
model

Definition at line 231 of file Primitives.cpp.

◆ setupConvexMeshMaterial()

void setupConvexMeshMaterial ( const map< string, Node * > &  nodes,
Material material 
)
staticprivate

Set up convex mesh material.

Parameters
nodesnodes
materialmaterial

Definition at line 516 of file Primitives.cpp.

◆ setupConvexMeshModel()

void setupConvexMeshModel ( Model model)
static

Set up a convex mesh model.

Parameters
modelmodel

Definition at line 487 of file Primitives.cpp.

◆ toRP3DVector3()

static reactphysics3d::Vector3 toRP3DVector3 ( const Vector3 vector)
inlinestaticprivate

Converts a TDME2 vector to ReactPhysics3D vector.

Parameters
vectortdme vector
Returns
reactphysics3d vector

Definition at line 46 of file Primitives.h.

◆ transformVector3()

static Vector3 transformVector3 ( BoundingVolume boundingVolume,
const reactphysics3d::Vector3 &  vector 
)
inlinestaticprivate

Transforms a given ReactPhysics3D vector with bounding volume transform.

Parameters
boundingVolumebounding volume
vectorvector
Returns
transformed vector

Definition at line 56 of file Primitives.h.

◆ transformVector3Normal()

static Vector3 transformVector3Normal ( BoundingVolume boundingVolume,
const reactphysics3d::Vector3 &  normal 
)
inlinestaticprivate

Transforms a given ReactPhysics3D vector with bounding volume transform.

Parameters
boundingVolumebounding volume
normalvector
Returns
transformed vector

Definition at line 68 of file Primitives.h.

Member Data Documentation

◆ CAPSULE_SEGMENTS_X

constexpr int32_t CAPSULE_SEGMENTS_X { 20 }
staticconstexprprivate

Definition at line 38 of file Primitives.h.

◆ CAPSULE_SEGMENTS_Y

constexpr int32_t CAPSULE_SEGMENTS_Y { 20 }
staticconstexprprivate

Definition at line 39 of file Primitives.h.

◆ SPHERE_SEGMENTS_X

constexpr int32_t SPHERE_SEGMENTS_X { 20 }
staticconstexprprivate

Definition at line 36 of file Primitives.h.

◆ SPHERE_SEGMENTS_Y

constexpr int32_t SPHERE_SEGMENTS_Y { 20 }
staticconstexprprivate

Definition at line 37 of file Primitives.h.


The documentation for this class was generated from the following files: