6#include <ext/reactphysics3d/src/mathematics/Vector3.h>
47 return reactphysics3d::Vector3(vector.
getX(), vector.
getY(), vector.
getZ());
59 return Vector3(vectorTransformed.x, vectorTransformed.y, vectorTransformed.z);
71 normalTransformed.normalize();
72 return Vector3(normalTransformed.x, normalTransformed.y, normalTransformed.z);
Representation of a 3d model.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Bounding volume interface.
reactphysics3d::Transform collisionShapeLocalTransform
reactphysics3d::Transform collisionShapeTransform
Capsule physics primitive.
Convex mesh physics primitive.
Oriented bounding box physics primitive.
Sphere physics primitive.
Helper class to create models from physics primitive bounding volumes.
static constexpr int32_t SPHERE_SEGMENTS_X
static Vector3 transformVector3(BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &vector)
Transforms a given ReactPhysics3D vector with bounding volume transform.
static void setupConvexMeshModel(Model *model)
Set up a convex mesh model.
static Model * createBoundingBoxModel(BoundingBox *boundingBox, const string &id)
Creates a model from bounding box.
static void setupConvexMeshMaterial(const map< string, Node * > &nodes, Material *material)
Set up convex mesh material.
static Model * createSphereModel(Sphere *sphere, const string &id, int32_t segmentsX, int32_t segmentsY)
Creates a model from oriented bounding box.
static Vector3 transformVector3Normal(BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &normal)
Transforms a given ReactPhysics3D vector with bounding volume transform.
static constexpr int32_t SPHERE_SEGMENTS_Y
static Model * createModel(BoundingBox *boundingVolume, const string &id)
Creates a model from bounding volume.
static Model * createConvexMeshModel(ConvexMesh *mesh, const string &id)
Creates a model from convex mesh.
static Model * createOrientedBoundingBoxModel(OrientedBoundingBox *orientedBoundingBox, const string &id)
Creates a model from oriented bounding box.
static constexpr int32_t CAPSULE_SEGMENTS_Y
static constexpr int32_t CAPSULE_SEGMENTS_X
static Model * createCapsuleModel(Capsule *capsule, const string &id, int32_t segmentsX, int32_t segmentsY)
Creates a model from capsule.
static reactphysics3d::Vector3 toRP3DVector3(const Vector3 &vector)
Converts a TDME2 vector to ReactPhysics3D vector.