TDME2 1.9.121
|
Dynamic rigid/static rigid/collision body class. More...
#include <tdme/engine/physics/Body.h>
Public Member Functions | |
bool | isCloned () |
void | setCloned (bool cloned) |
Set cloned. More... | |
const string & | getId () |
const string & | getRootId () |
void | setRootId (const string &rootId) |
Set root id. More... | |
int | getType () |
Return type, see TYPE_*. More... | |
uint16_t | getCollisionTypeId () |
void | setCollisionTypeId (uint16_t typeId) |
Set collision type id. More... | |
uint16_t | getCollisionTypeIds () |
void | setCollisionTypeIds (uint16_t collisionTypeIds) |
Set up collision type ids. More... | |
bool | isEnabled () |
void | setEnabled (bool enabled) |
Set up if rigid body is enabled. More... | |
bool | isStatic () |
bool | isSleeping () |
void | setSleeping (bool sleeping) |
Set sleeping. More... | |
vector< BoundingVolume * > & | getBoundingVolumes () |
void | addBoundingVolume (BoundingVolume *boundingVolume) |
Add bounding volume. More... | |
BoundingBox | computeBoundingBoxTransformed () |
Compute bounding box transformed. More... | |
float | getFriction () |
void | setFriction (float friction) |
Set up friction. More... | |
float | getRestitution () |
void | setRestitution (float restitution) |
Set up restitution. More... | |
float | getMass () |
void | setMass (float mass) |
Set up mass. More... | |
const Vector3 | getLinearVelocity () |
void | setLinearVelocity (const Vector3 &linearVelocity) |
Set linear velocity. More... | |
const Vector3 | getAngularVelocity () |
void | setAngularVelocity (const Vector3 &angularVelocity) |
Set angular velocity. More... | |
float | getLinearDamping () |
void | setLinearDamping (float linearDamping) |
Set linear damping. More... | |
float | getAngularDamping () |
void | setAngularDamping (float angularDamping) |
Set angular damping. More... | |
const Transformations & | getTransformations () |
void | fromTransformations (const Transformations &transformations) |
Synchronizes this rigid body with transformations. More... | |
void | addForce (const Vector3 &forceOrigin, const Vector3 &force) |
Add force. More... | |
void | addForce (const Vector3 &forceOrigin) |
Add force to center of mass. More... | |
void | addTorque (const Vector3 &torque) |
Add torque. More... | |
void | addCollisionListener (CollisionListener *listener) |
Add a collision listener to this rigid body. More... | |
void | removeCollisionListener (CollisionListener *listener) |
Remove a collision listener to this rigid body. More... | |
Static Public Member Functions | |
static const Vector3 | getNoRotationInertiaTensor () |
Static Public Attributes | |
static constexpr int32_t | TYPE_STATIC { 0 } |
static constexpr int32_t | TYPE_DYNAMIC { 2 } |
static constexpr int32_t | TYPE_KINEMATIC { 1 } |
static constexpr int32_t | TYPE_COLLISION { 3 } |
static constexpr uint16_t | TYPEID_STATIC { 1 } |
static constexpr uint16_t | TYPEID_DYNAMIC { 2 } |
static constexpr uint16_t | TYPEIDS_ALL { 65535 } |
Private Member Functions | |
Body (World *world, const string &id, int type, bool enabled, uint16_t collisionTypeId, const Transformations &transformations, float restitution, float friction, float mass, const Vector3 &inertiaTensor, const vector< BoundingVolume * > boundingVolumes) | |
Protected constructor. More... | |
~Body () | |
Destructor. More... | |
void | resetProxyShapes () |
Reset proxy shapes. More... | |
void | fireOnCollision (Body *other, CollisionResponse &collisionResponse) |
Fire on collision. More... | |
void | fireOnCollisionBegin (Body *other, CollisionResponse &collisionResponse) |
Fire on collision begin. More... | |
void | fireOnCollisionEnd (Body *other) |
Fire on collision end. More... | |
Static Private Member Functions | |
static Matrix4x4 | computeInverseInertiaMatrix (BoundingBox *boundingBox, float mass, float scaleXAxis, float scaleYAxis, float scaleZAxis) |
Computes the inverse inertia matrix. More... | |
Private Attributes | |
World * | world { nullptr } |
reactphysics3d::RigidBody * | rigidBody { nullptr } |
reactphysics3d::CollisionBody * | collisionBody { nullptr } |
bool | cloned { false } |
string | id |
string | rootId |
int32_t | type |
float | mass |
uint16_t | collideTypeIds |
uint16_t | collisionTypeId |
Vector3 | inertiaTensor |
Transformations | transformations |
Vector3 | transformationsScale |
vector< BoundingVolume * > | boundingVolumes |
vector< reactphysics3d::ProxyShape * > | proxyShapes |
vector< CollisionListener * > | collisionListener |
Friends | |
class | World |
|
private |
void addBoundingVolume | ( | BoundingVolume * | boundingVolume | ) |
Add bounding volume.
boundingVolume | bounding volume |
void addCollisionListener | ( | CollisionListener * | listener | ) |
void addForce | ( | const Vector3 & | forceOrigin | ) |
void addTorque | ( | const Vector3 & | torque | ) |
BoundingBox computeBoundingBoxTransformed | ( | ) |
|
staticprivate |
|
private |
|
private |
|
private |
void fromTransformations | ( | const Transformations & | transformations | ) |
const Vector3 getAngularVelocity | ( | ) |
vector< BoundingVolume * > & getBoundingVolumes | ( | ) |
uint16_t getCollisionTypeIds | ( | ) |
|
static |
const Transformations & getTransformations | ( | ) |
bool isCloned | ( | ) |
bool isStatic | ( | ) |
void removeCollisionListener | ( | CollisionListener * | listener | ) |
void setAngularDamping | ( | float | angularDamping | ) |
void setAngularVelocity | ( | const Vector3 & | angularVelocity | ) |
void setCloned | ( | bool | cloned | ) |
void setCollisionTypeId | ( | uint16_t | typeId | ) |
void setCollisionTypeIds | ( | uint16_t | collisionTypeIds | ) |
void setEnabled | ( | bool | enabled | ) |
void setFriction | ( | float | friction | ) |
void setLinearDamping | ( | float | linearDamping | ) |
void setLinearVelocity | ( | const Vector3 & | linearVelocity | ) |
void setMass | ( | float | mass | ) |
void setRestitution | ( | float | restitution | ) |
void setRootId | ( | const string & | rootId | ) |
void setSleeping | ( | bool | sleeping | ) |
|
private |
|
private |
|
private |
|
private |