TDME2 1.9.121
BoundingBox.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <vector>
5
6#include <tdme/tdme.h>
10#include <tdme/math/Vector3.h>
11
12using std::array;
13using std::vector;
14
18
19/**
20 * Axis aligned bounding box used for frustum, this is not directly connectable with physics engine
21 * @author Andreas Drewke
22 * @version $Id$
23 */
25{
26
27private:
28 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE0_INDICES;
29 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE1_INDICES;
30 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE2_INDICES;
31 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE3_INDICES;
32 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE4_INDICES;
33 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE5_INDICES;
34 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE6_INDICES;
35 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE7_INDICES;
36 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE8_INDICES;
37 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE9_INDICES;
38 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE10_INDICES;
39 STATIC_DLL_IMPEXT static const array<int32_t, 3> FACE11_INDICES;
40 STATIC_DLL_IMPEXT static const array<array<int32_t,3>,12> facesVerticesIndexes;
43 vector<Vector3> vertices;
46
47public:
48 /**
49 * Public constructor
50 */
52
53 /**
54 * Public constructor
55 * @param boundingBox bounding box
56 */
57 BoundingBox(BoundingBox* boundingBox);
58
59 /**
60 * Public constructor
61 * @param obb oriented bounding box
62 */
64
65 /**
66 * Public constructor
67 * @param min min
68 * @param max max
69 */
70 BoundingBox(const Vector3& min, const Vector3& max);
71
72 /**
73 * Compute closest point in bounding box of given point
74 * @param point point
75 * @return closest point of given point in bounding box
76 */
78 const auto& pointXYZ = point.getArray();
79 const auto& minXYZ = min.getArray();
80 const auto& maxXYZ = max.getArray();
81 return Vector3(
82 pointXYZ[0] < minXYZ[0]?minXYZ[0]:pointXYZ[0] > maxXYZ[0]?maxXYZ[0]:pointXYZ[0],
83 pointXYZ[1] < minXYZ[1]?minXYZ[1]:pointXYZ[1] > maxXYZ[1]?maxXYZ[1]:pointXYZ[1],
84 pointXYZ[2] < minXYZ[2]?minXYZ[2]:pointXYZ[2] > maxXYZ[2]?maxXYZ[2]:pointXYZ[2]
85 );
86 }
87
88 /**
89 * @return min x,y,z vertex
90 */
91 inline Vector3& getMin() {
92 return min;
93 }
94
95 /**
96 * @return max x,y,z vertex
97 */
98 inline Vector3& getMax() {
99 return max;
100 }
101
102 /**
103 * Returns bounding box vertices
104 * @return vertices
105 */
106 const vector<Vector3>& getVertices() const {
107 return vertices;
108 }
109
110 /**
111 * @return faces vertices indexes
112 */
113 inline static const array<array<int32_t,3>,12>* getFacesVerticesIndexes() {
114 return &facesVerticesIndexes;
115 }
116
117 /**
118 * @return center
119 */
120 inline const Vector3& getCenter() const {
121 return center;
122 }
123
124 /**
125 * @return half extension
126 */
127 inline const Vector3& getDimensions() const {
128 return dimensions;
129 }
130
131 /**
132 * Set up this bounding volume from given bounding volume
133 * @param original original bounding box
134 */
135 void fromBoundingVolume(BoundingBox* original);
136
137 /**
138 * Create bounding volume from given original(of same type) with applied transformations
139 * @param original original bounding box
140 * @param transformations transformations
141 */
142 void fromBoundingVolumeWithTransformations(BoundingBox* original, const Transformations& transformations);
143
144 /**
145 * Extend bounding box with given bounding box
146 * @param boundingBox bounding box
147 */
148 inline void extend(BoundingBox* boundingBox) {
149 for (auto i = 0; i < 3; i++) {
150 if (boundingBox->getMin()[i] < min[i]) min[i] = boundingBox->getMin()[i];
151 if (boundingBox->getMax()[i] > max[i]) max[i] = boundingBox->getMax()[i];
152 }
153 update();
154 }
155
156 /**
157 * Extend bounding box with given point
158 * @param point point
159 */
160 inline void extend(const Vector3& point) {
161 for (auto i = 0; i < 3; i++) {
162 if (point[i] < min[i]) min[i] = point[i];
163 if (point[i] > max[i]) max[i] = point[i];
164 }
165 update();
166 }
167
168 /**
169 * Updates this bounding box
170 */
171 void update();
172
173};
Transformations which contain scale, rotations and translation.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE6_INDICES
Definition: BoundingBox.h:34
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Definition: BoundingBox.cpp:79
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE1_INDICES
Definition: BoundingBox.h:29
static STATIC_DLL_IMPEXT const array< array< int32_t, 3 >, 12 > facesVerticesIndexes
Definition: BoundingBox.h:40
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE10_INDICES
Definition: BoundingBox.h:38
static const array< array< int32_t, 3 >, 12 > * getFacesVerticesIndexes()
Definition: BoundingBox.h:113
void fromBoundingVolume(BoundingBox *original)
Set up this bounding volume from given bounding volume.
Definition: BoundingBox.cpp:70
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE5_INDICES
Definition: BoundingBox.h:33
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE2_INDICES
Definition: BoundingBox.h:30
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE11_INDICES
Definition: BoundingBox.h:39
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE7_INDICES
Definition: BoundingBox.h:35
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE9_INDICES
Definition: BoundingBox.h:37
void extend(const Vector3 &point)
Extend bounding box with given point.
Definition: BoundingBox.h:160
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE4_INDICES
Definition: BoundingBox.h:32
const Vector3 & getCenter() const
Definition: BoundingBox.h:120
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE3_INDICES
Definition: BoundingBox.h:31
Vector3 computeClosestPointInBoundingBox(const Vector3 &point)
Compute closest point in bounding box of given point.
Definition: BoundingBox.h:77
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
const Vector3 & getDimensions() const
Definition: BoundingBox.h:127
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE0_INDICES
Definition: BoundingBox.h:28
static STATIC_DLL_IMPEXT const array< int32_t, 3 > FACE8_INDICES
Definition: BoundingBox.h:36
Oriented bounding box physics primitive.
3D vector 3 class
Definition: Vector3.h:22
array< float, 3 > & getArray() const
Definition: Vector3.h:171
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11