TDME2 1.9.121
OrientedBoundingBox.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <vector>
5
6#include <ext/reactphysics3d/src/collision/shapes/BoxShape.h>
7
8#include <tdme/tdme.h>
10#include <tdme/math/Math.h>
11#include <tdme/math/Vector3.h>
12
13using std::array;
14using std::vector;
15
20
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 =
34{{
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
38}};
39
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);
43
44OrientedBoundingBox::OrientedBoundingBox(const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension, const Vector3& scale)
45{
46 this->center.set(center);
47 this->axes[0].set(axis0);
48 this->axes[1].set(axis1);
49 this->axes[2].set(axis2);
50 this->halfExtension.set(halfExtension);
52}
53
55{
56 this->halfExtension.set(bb->getMax()).sub(bb->getMin()).scale(0.5f);
57 this->center.set(bb->getMin()).add(halfExtension);
58 this->axes[0].set(AABB_AXIS_X);
59 this->axes[1].set(AABB_AXIS_Y);
60 this->axes[2].set(AABB_AXIS_Z);
61 setScale(scale);
62}
63
65{
66 this->center.set(0.0f, 0.0f, 0.0f);
67 this->axes[0].set(AABB_AXIS_X);
68 this->axes[1].set(AABB_AXIS_Y);
69 this->axes[2].set(AABB_AXIS_Z);
70 this->halfExtension.set(0.0f, 0.0f, 0.0f);
71 setScale(Vector3(1.0f, 1.0f, 1.0f));
72}
73
74const array<Vector3, 8> OrientedBoundingBox::getVertices() const {
75 array<Vector3, 8> vertices;
76 array<Vector3, 3> xyzAxes;
77 xyzAxes[0] = AABB_AXIS_X;
78 xyzAxes[1] = AABB_AXIS_Y;
79 xyzAxes[2] = AABB_AXIS_Z;
80 Vector3 axis;
81 // just for my imagination
82 // near left top
83 vertices[0].set(0.0f, 0.0f, 0.0f);
84 vertices[0].add(axis.set(xyzAxes[0]).scale(-halfExtension[0]).scale(scale[0]));
85 vertices[0].add(axis.set(xyzAxes[1]).scale(-halfExtension[1]).scale(scale[1]));
86 vertices[0].add(axis.set(xyzAxes[2]).scale(-halfExtension[2]).scale(scale[2]));
87 // just for my imagination
88 // near right top
89 vertices[1].set(0.0f, 0.0f, 0.0f);
90 vertices[1].add(axis.set(xyzAxes[0]).scale(+halfExtension[0]).scale(scale[0]));
91 vertices[1].add(axis.set(xyzAxes[1]).scale(-halfExtension[1]).scale(scale[1]));
92 vertices[1].add(axis.set(xyzAxes[2]).scale(-halfExtension[2]).scale(scale[2]));
93 // just for my imagination
94 // near right bottom
95 vertices[2].set(0.0f, 0.0f, 0.0f);
96 vertices[2].add(axis.set(xyzAxes[0]).scale(+halfExtension[0]).scale(scale[0]));
97 vertices[2].add(axis.set(xyzAxes[1]).scale(+halfExtension[1]).scale(scale[1]));
98 vertices[2].add(axis.set(xyzAxes[2]).scale(-halfExtension[2]).scale(scale[2]));
99 // just for my imagination
100 // near left bottom
101 vertices[3].set(0.0f, 0.0f, 0.0f);
102 vertices[3].add(axis.set(xyzAxes[0]).scale(-halfExtension[0]).scale(scale[0]));
103 vertices[3].add(axis.set(xyzAxes[1]).scale(+halfExtension[1]).scale(scale[1]));
104 vertices[3].add(axis.set(xyzAxes[2]).scale(-halfExtension[2]).scale(scale[2]));
105 // just for my imagination
106 // far left top
107 vertices[4].set(0.0f, 0.0f, 0.0f);
108 vertices[4].add(axis.set(xyzAxes[0]).scale(-halfExtension[0]).scale(scale[0]));
109 vertices[4].add(axis.set(xyzAxes[1]).scale(-halfExtension[1]).scale(scale[1]));
110 vertices[4].add(axis.set(xyzAxes[2]).scale(+halfExtension[2]).scale(scale[2]));
111 // just for my imagination
112 // far right top
113 vertices[5].set(0.0f, 0.0f, 0.0f);
114 vertices[5].add(axis.set(xyzAxes[0]).scale(+halfExtension[0]).scale(scale[0]));
115 vertices[5].add(axis.set(xyzAxes[1]).scale(-halfExtension[1]).scale(scale[1]));
116 vertices[5].add(axis.set(xyzAxes[2]).scale(+halfExtension[2]).scale(scale[2]));
117 // just for my imagination
118 // far right bottom
119 vertices[6].set(0.0f, 0.0f, 0.0f);
120 vertices[6].add(axis.set(xyzAxes[0]).scale(+halfExtension[0]).scale(scale[0]));
121 vertices[6].add(axis.set(xyzAxes[1]).scale(+halfExtension[1]).scale(scale[1]));
122 vertices[6].add(axis.set(xyzAxes[2]).scale(+halfExtension[2]).scale(scale[2]));
123 // just for my imagination
124 // far left bottom
125 vertices[7].set(0.0f, 0.0f, 0.0f);
126 vertices[7].add(axis.set(xyzAxes[0]).scale(-halfExtension[0]).scale(scale[0]));
127 vertices[7].add(axis.set(xyzAxes[1]).scale(+halfExtension[1]).scale(scale[1]));
128 vertices[7].add(axis.set(xyzAxes[2]).scale(+halfExtension[2]).scale(scale[2]));
129 //
130 return vertices;
131}
132
133/**
134 * @return faces vertices indexes
135 */
136const array<array<int32_t,3>,12>& OrientedBoundingBox::getFacesVerticesIndexes() {
138}
139
140const array<Vector3, 3>& OrientedBoundingBox::getAxes() const
141{
142 return axes;
143}
144
146{
147 return halfExtension;
148}
149
151 // store new scale
152 this->scale.set(scale);
153
154 // remove old collision shape
155 if (collisionShape != nullptr) delete collisionShape;
156
157 //
160 collisionShapeLocalTransform.setOrientation(
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(),
171 this->axes[2].getZ()
172 )
173 )
174 );
175 collisionShape = new reactphysics3d::BoxShape(
176 reactphysics3d::Vector3(
177 Math::max(Math::EPSILON, Math::abs(halfExtension.getX() * scale.getX())),
178 Math::max(Math::EPSILON, Math::abs(halfExtension.getY() * scale.getY())),
179 Math::max(Math::EPSILON, Math::abs(halfExtension.getZ() * scale.getZ()))
180 )
181 );
182 // compute bounding box
184}
185
187{
188 return new OrientedBoundingBox(
189 center,
190 axes[0],
191 axes[1],
192 axes[2],
194 scale
195 );
196}
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
reactphysics3d::Transform collisionShapeLocalTransform
reactphysics3d::CollisionShape * collisionShape
void computeBoundingBox()
Compute bounding box.
Oriented bounding box physics primitive.
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.
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
Standard math functions.
Definition: Math.h:21
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349