6#include <ext/reactphysics3d/src/collision/shapes/BoxShape.h>
21const array<int32_t, 3> OrientedBoundingBox::FACE0_INDICES = {{ 0, 4, 7 }};
22const array<int32_t, 3> OrientedBoundingBox::FACE1_INDICES = {{ 7, 3, 0 }};
23const array<int32_t, 3> OrientedBoundingBox::FACE2_INDICES = {{ 6, 5, 1 }};
24const array<int32_t, 3> OrientedBoundingBox::FACE3_INDICES = {{ 1, 2, 6 }};
25const array<int32_t, 3> OrientedBoundingBox::FACE4_INDICES = {{ 5, 4, 0 }};
26const array<int32_t, 3> OrientedBoundingBox::FACE5_INDICES = {{ 0, 1, 5 }};
27const array<int32_t, 3> OrientedBoundingBox::FACE6_INDICES = {{ 3, 7, 6 }};
28const array<int32_t, 3> OrientedBoundingBox::FACE7_INDICES = {{ 6, 2, 3 }};
29const array<int32_t, 3> OrientedBoundingBox::FACE8_INDICES = {{ 2, 1, 0 }};
30const array<int32_t, 3> OrientedBoundingBox::FACE9_INDICES = {{ 0, 3, 2 }};
31const array<int32_t, 3> OrientedBoundingBox::FACE10_INDICES = {{ 4, 5, 6 }};
32const array<int32_t, 3> OrientedBoundingBox::FACE11_INDICES = {{ 6, 7, 4 }};
33const array<array<int32_t,3>,12> OrientedBoundingBox::facesVerticesIndexes =
35 FACE0_INDICES, FACE1_INDICES, FACE2_INDICES, FACE3_INDICES,
36 FACE4_INDICES, FACE5_INDICES, FACE6_INDICES, FACE7_INDICES,
37 FACE8_INDICES, FACE9_INDICES, FACE10_INDICES, FACE11_INDICES
40const Vector3 OrientedBoundingBox::AABB_AXIS_X(1.0f, 0.0f, 0.0f);
41const Vector3 OrientedBoundingBox::AABB_AXIS_Y(0.0f, 1.0f, 0.0f);
42const Vector3 OrientedBoundingBox::AABB_AXIS_Z(0.0f, 0.0f, 1.0f);
47 this->
axes[0].set(axis0);
48 this->
axes[1].set(axis1);
49 this->
axes[2].set(axis2);
75 array<Vector3, 8> vertices;
76 array<Vector3, 3> xyzAxes;
83 vertices[0].
set(0.0f, 0.0f, 0.0f);
89 vertices[1].
set(0.0f, 0.0f, 0.0f);
95 vertices[2].
set(0.0f, 0.0f, 0.0f);
101 vertices[3].
set(0.0f, 0.0f, 0.0f);
107 vertices[4].
set(0.0f, 0.0f, 0.0f);
113 vertices[5].
set(0.0f, 0.0f, 0.0f);
119 vertices[6].
set(0.0f, 0.0f, 0.0f);
125 vertices[7].
set(0.0f, 0.0f, 0.0f);
161 reactphysics3d::Quaternion(
162 reactphysics3d::Matrix3x3(
163 this->
axes[0].getX(),
164 this->
axes[0].getY(),
165 this->
axes[0].getZ(),
166 this->
axes[1].getX(),
167 this->
axes[1].getY(),
168 this->
axes[1].getZ(),
169 this->
axes[2].getX(),
170 this->
axes[2].getY(),
176 reactphysics3d::Vector3(
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Bounding volume interface.
reactphysics3d::Transform collisionShapeLocalTransform
Vector3 collisionShapeLocalTranslation
reactphysics3d::CollisionShape * collisionShape
void computeBoundingBox()
Compute bounding box.
Oriented bounding box physics primitive.
const Vector3 & getHalfExtension() const
static STATIC_DLL_IMPEXT const array< array< int32_t, 3 >, 12 > facesVerticesIndexes
const array< Vector3, 8 > getVertices() const
void setScale(const Vector3 &scale) override
Set up oriented bounding box from oriented bounding box.
OrientedBoundingBox()
Public constructor.
static STATIC_DLL_IMPEXT const Vector3 AABB_AXIS_Y
static const array< array< int32_t, 3 >, 12 > & getFacesVerticesIndexes()
const array< Vector3, 3 > & getAxes() const
BoundingVolume * clone() const override
Clones this bounding volume.
static STATIC_DLL_IMPEXT const Vector3 AABB_AXIS_Z
static STATIC_DLL_IMPEXT const Vector3 AABB_AXIS_X
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Vector3 & scale(float scale)
Scale this vector.