TDME2 1.9.121
BoundingBox.cpp
Go to the documentation of this file.
2
3#include <vector>
4
5#include <tdme/tdme.h>
9#include <tdme/math/Vector3.h>
10
11using std::vector;
12
18
19const array<int32_t, 3> BoundingBox::FACE0_INDICES = {{ 0, 4, 7 }};
20const array<int32_t, 3> BoundingBox::FACE1_INDICES = {{ 7, 3, 0 }};
21const array<int32_t, 3> BoundingBox::FACE2_INDICES = {{ 6, 5, 1 }};
22const array<int32_t, 3> BoundingBox::FACE3_INDICES = {{ 1, 2, 6 }};
23const array<int32_t, 3> BoundingBox::FACE4_INDICES = {{ 5, 4, 0 }};
24const array<int32_t, 3> BoundingBox::FACE5_INDICES = {{ 0, 1, 5 }};
25const array<int32_t, 3> BoundingBox::FACE6_INDICES = {{ 3, 7, 6 }};
26const array<int32_t, 3> BoundingBox::FACE7_INDICES = {{ 6, 2, 3 }};
27const array<int32_t, 3> BoundingBox::FACE8_INDICES = {{ 2, 1, 0 }};
28const array<int32_t, 3> BoundingBox::FACE9_INDICES = {{ 0, 3, 2 }};
29const array<int32_t, 3> BoundingBox::FACE10_INDICES = {{ 4, 5, 6 }};
30const array<int32_t, 3> BoundingBox::FACE11_INDICES = {{ 6, 7, 4 }};
31const array<array<int32_t,3>,12> BoundingBox::facesVerticesIndexes =
32{{
33 FACE0_INDICES, FACE1_INDICES, FACE2_INDICES, FACE3_INDICES,
34 FACE4_INDICES, FACE5_INDICES, FACE6_INDICES, FACE7_INDICES,
35 FACE8_INDICES, FACE9_INDICES, FACE10_INDICES, FACE11_INDICES
36}};
37
38BoundingBox::BoundingBox()
39{
40 vertices.resize(8);
41 update();
42}
43
45{
46 vertices.resize(8);
47 this->min.set(boundingBox->min);
48 this->max.set(boundingBox->max);
49 update();
50}
51
53{
54 vertices.resize(8);
55 min = obb->getCenter();
56 max = obb->getCenter();
57 for (auto& vertex: obb->getVertices()) {
58 extend(vertex);
59 }
60}
61
63{
64 vertices.resize(8);
65 this->min.set(min);
66 this->max.set(max);
67 update();
68}
69
71{
72 min = boundingBox->min;
73 max = boundingBox->max;
74 vertices = boundingBox->vertices;
75 center = boundingBox->center;
76 dimensions = boundingBox->dimensions;
77}
78
80{
81 // apply transformations from original vertices to local vertices
82 auto& transformationsMatrix = transformations.getTransformationsMatrix();
83 auto _vertices = boundingBox->getVertices();
84 for (auto i = 0; i < vertices.size(); i++) {
85 vertices[i] = transformationsMatrix.multiply(_vertices[i]);
86 }
87 // determine axis aligned bounding box constraints based on local vertices
88 auto& vertexXYZ = vertices[0].getArray();
89 float minX = vertexXYZ[0], minY = vertexXYZ[1], minZ = vertexXYZ[2];
90 float maxX = vertexXYZ[0], maxY = vertexXYZ[1], maxZ = vertexXYZ[2];
91 for (auto vertexIndex = 1; vertexIndex < vertices.size(); vertexIndex++) {
92 auto& vertex = vertices[vertexIndex];
93 vertexXYZ = vertex.getArray();
94 if (vertexXYZ[0] < minX) minX = vertexXYZ[0];
95 if (vertexXYZ[1] < minY) minY = vertexXYZ[1];
96 if (vertexXYZ[2] < minZ) minZ = vertexXYZ[2];
97 if (vertexXYZ[0] > maxX) maxX = vertexXYZ[0];
98 if (vertexXYZ[1] > maxY) maxY = vertexXYZ[1];
99 if (vertexXYZ[2] > maxZ) maxZ = vertexXYZ[2];
100 }
101 // set up new aabb
102 min.set(minX, minY, minZ);
103 max.set(maxX, maxY, maxZ);
104 // compute new vertices based on aabb constraints
105 update();
106}
107
109 auto& minXYZ = min.getArray();
110 auto& maxXYZ = max.getArray();
111 // near, left, top
112 vertices[0].set(minXYZ[0], minXYZ[1], minXYZ[2]);
113 // near, right, top
114 vertices[1].set(maxXYZ[0], minXYZ[1], minXYZ[2]);
115 // near, right, bottom
116 vertices[2].set(maxXYZ[0], maxXYZ[1], minXYZ[2]);
117 // near, left, bottom
118 vertices[3].set(minXYZ[0], maxXYZ[1], minXYZ[2]);
119 // far, left, top
120 vertices[4].set(minXYZ[0], minXYZ[1], maxXYZ[2]);
121 // far, right, top
122 vertices[5].set(maxXYZ[0], minXYZ[1], maxXYZ[2]);
123 // far, right, bottom
124 vertices[6].set(maxXYZ[0], maxXYZ[1], maxXYZ[2]);
125 // far, left, bottom
126 vertices[7].set(minXYZ[0], maxXYZ[1], maxXYZ[2]);
127 center.set(min).add(max).scale(0.5f);
129}
130
131
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Definition: BoundingBox.cpp:79
void fromBoundingVolume(BoundingBox *original)
Set up this bounding volume from given bounding volume.
Definition: BoundingBox.cpp:70
void extend(BoundingBox *boundingBox)
Extend bounding box with given bounding box.
Definition: BoundingBox.h:148
void update()
Updates this bounding box.
const vector< Vector3 > & getVertices() const
Returns bounding box vertices.
Definition: BoundingBox.h:106
Oriented bounding box physics primitive.
const array< Vector3, 8 > getVertices() const
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
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
array< float, 3 > & getArray() const
Definition: Vector3.h:171