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 =
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
38BoundingBox::BoundingBox()
84 for (
auto i = 0; i <
vertices.size(); i++) {
85 vertices[i] = transformationsMatrix.multiply(_vertices[i]);
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];
102 min.
set(minX, minY, minZ);
103 max.
set(maxX, maxY, maxZ);
112 vertices[0].set(minXYZ[0], minXYZ[1], minXYZ[2]);
114 vertices[1].set(maxXYZ[0], minXYZ[1], minXYZ[2]);
116 vertices[2].set(maxXYZ[0], maxXYZ[1], minXYZ[2]);
118 vertices[3].set(minXYZ[0], maxXYZ[1], minXYZ[2]);
120 vertices[4].set(minXYZ[0], minXYZ[1], maxXYZ[2]);
122 vertices[5].set(maxXYZ[0], minXYZ[1], maxXYZ[2]);
124 vertices[6].set(maxXYZ[0], maxXYZ[1], maxXYZ[2]);
126 vertices[7].set(minXYZ[0], maxXYZ[1], maxXYZ[2]);
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
BoundingBox()
Public constructor.
void fromBoundingVolume(BoundingBox *original)
Set up this bounding volume from given bounding volume.
void extend(BoundingBox *boundingBox)
Extend bounding box with given bounding box.
void update()
Updates this bounding box.
vector< Vector3 > vertices
const vector< Vector3 > & getVertices() const
Returns bounding box vertices.
const Vector3 & getCenter() const
Oriented bounding box physics primitive.
const array< Vector3, 8 > getVertices() const
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.
array< float, 3 > & getArray() const