TDME2 1.9.121
|
Capsule physics primitive. More...
#include <tdme/engine/primitives/Capsule.h>
Public Member Functions | |
Capsule (const Vector3 &a, const Vector3 &b, float radius, const Vector3 &scale=Vector3(1.0f, 1.0f, 1.0f)) | |
Public constructor. More... | |
float | getRadius () const |
const Vector3 & | getA () const |
const Vector3 & | getB () const |
void | setScale (const Vector3 &scale) override |
Set local scale. More... | |
BoundingVolume * | clone () const override |
Clones this bounding volume. More... | |
![]() | |
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 Attributes | |
Vector3 | a |
Vector3 | b |
float | radius |
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 |
Capsule | ( | const Vector3 & | a, |
const Vector3 & | b, | ||
float | radius, | ||
const Vector3 & | scale = Vector3(1.0f, 1.0f, 1.0f) |
||
) |
Public constructor.
a | a |
b | b |
radius | radius |
scale | scale |
Definition at line 20 of file Capsule.cpp.
|
overridevirtual |
Clones this bounding volume.
Implements BoundingVolume.
Definition at line 101 of file Capsule.cpp.
const Vector3 & getA | ( | ) | const |
Definition at line 34 of file Capsule.cpp.
const Vector3 & getB | ( | ) | const |
Definition at line 39 of file Capsule.cpp.
float getRadius | ( | ) | const |
Definition at line 29 of file Capsule.cpp.
|
overridevirtual |
Set local scale.
Implements BoundingVolume.
Definition at line 44 of file Capsule.cpp.