TDME2 1.9.121
|
Oriented bounding box physics primitive. More...
#include <tdme/engine/primitives/OrientedBoundingBox.h>
Public Member Functions | |
OrientedBoundingBox (const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension, const Vector3 &scale=Vector3(1.0f, 1.0f, 1.0f)) | |
Public constructor. More... | |
OrientedBoundingBox (BoundingBox *bb, const Vector3 &scale=Vector3(1.0f, 1.0f, 1.0f)) | |
Public constructor. More... | |
OrientedBoundingBox () | |
Public constructor. More... | |
const array< Vector3, 3 > & | getAxes () const |
const Vector3 & | getHalfExtension () const |
void | setScale (const Vector3 &scale) override |
Set up oriented bounding box from oriented bounding box. More... | |
BoundingVolume * | clone () const override |
Clones this bounding volume. More... | |
const array< Vector3, 8 > | getVertices () const |
![]() | |
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... | |
Static Public Member Functions | |
static const array< array< int32_t, 3 >, 12 > & | getFacesVerticesIndexes () |
Static Public Attributes | |
static STATIC_DLL_IMPEXT const Vector3 | AABB_AXIS_X |
static STATIC_DLL_IMPEXT const Vector3 | AABB_AXIS_Y |
static STATIC_DLL_IMPEXT const Vector3 | AABB_AXIS_Z |
Private Attributes | |
array< Vector3, 3 > | axes |
Vector3 | halfExtension |
Static Private Attributes | |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE0_INDICES = {{ 0, 4, 7 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE1_INDICES = {{ 7, 3, 0 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE2_INDICES = {{ 6, 5, 1 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE3_INDICES = {{ 1, 2, 6 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE4_INDICES = {{ 5, 4, 0 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE5_INDICES = {{ 0, 1, 5 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE6_INDICES = {{ 3, 7, 6 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE7_INDICES = {{ 6, 2, 3 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE8_INDICES = {{ 2, 1, 0 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE9_INDICES = {{ 0, 3, 2 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE10_INDICES = {{ 4, 5, 6 }} |
static STATIC_DLL_IMPEXT const array< int32_t, 3 > | FACE11_INDICES = {{ 6, 7, 4 }} |
static STATIC_DLL_IMPEXT const array< array< int32_t, 3 >, 12 > | facesVerticesIndexes |
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 |
Oriented bounding box physics primitive.
Definition at line 21 of file OrientedBoundingBox.h.
OrientedBoundingBox | ( | const Vector3 & | center, |
const Vector3 & | axis0, | ||
const Vector3 & | axis1, | ||
const Vector3 & | axis2, | ||
const Vector3 & | halfExtension, | ||
const Vector3 & | scale = Vector3(1.0f, 1.0f, 1.0f) |
||
) |
Public constructor.
center | center |
axis0 | axis0 |
axis1 | axis1 |
axis2 | axis2 |
halfExtension | half extension |
scale | scale |
Definition at line 44 of file OrientedBoundingBox.cpp.
OrientedBoundingBox | ( | BoundingBox * | bb, |
const Vector3 & | scale = Vector3(1.0f, 1.0f, 1.0f) |
||
) |
Public constructor.
bb | bounding box |
scale | scale |
Definition at line 54 of file OrientedBoundingBox.cpp.
Public constructor.
Definition at line 64 of file OrientedBoundingBox.cpp.
|
overridevirtual |
Clones this bounding volume.
Implements BoundingVolume.
Definition at line 186 of file OrientedBoundingBox.cpp.
const array< Vector3, 3 > & getAxes | ( | ) | const |
Definition at line 140 of file OrientedBoundingBox.cpp.
|
static |
Definition at line 136 of file OrientedBoundingBox.cpp.
const Vector3 & getHalfExtension | ( | ) | const |
Definition at line 145 of file OrientedBoundingBox.cpp.
const array< Vector3, 8 > getVertices | ( | ) | const |
Definition at line 74 of file OrientedBoundingBox.cpp.
|
overridevirtual |
Set up oriented bounding box from oriented bounding box.
scale | bb |
Implements BoundingVolume.
Definition at line 150 of file OrientedBoundingBox.cpp.
|
static |
Definition at line 40 of file OrientedBoundingBox.h.
|
static |
Definition at line 41 of file OrientedBoundingBox.h.
|
static |
Definition at line 42 of file OrientedBoundingBox.h.
|
private |
Definition at line 98 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 25 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 35 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 36 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 26 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 27 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 28 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 29 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 30 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 31 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 32 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 33 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 34 of file OrientedBoundingBox.h.
|
staticprivate |
Definition at line 37 of file OrientedBoundingBox.h.
|
private |
Definition at line 99 of file OrientedBoundingBox.h.