cesium-native 0.46.0
Loading...
Searching...
No Matches
AxisAlignedBox.h
1#pragma once
2
3#include <CesiumGeometry/Library.h>
4
5#include <glm/ext/vector_double3.hpp>
6
7#include <vector>
8
9namespace CesiumGeometry {
10
15struct CESIUMGEOMETRY_API AxisAlignedBox final {
16
21 constexpr AxisAlignedBox() noexcept
22 : minimumX(0.0),
23 minimumY(0.0),
24 minimumZ(0.0),
25 maximumX(0.0),
26 maximumY(0.0),
27 maximumZ(0.0),
28 lengthX(0.0),
29 lengthY(0.0),
30 lengthZ(0.0),
31 center(0.0) {}
32
43 constexpr AxisAlignedBox(
44 double minimumX_,
45 double minimumY_,
46 double minimumZ_,
47 double maximumX_,
48 double maximumY_,
49 double maximumZ_) noexcept
50 : minimumX(minimumX_),
51 minimumY(minimumY_),
52 minimumZ(minimumZ_),
53 maximumX(maximumX_),
54 maximumY(maximumY_),
55 maximumZ(maximumZ_),
56 lengthX(maximumX - minimumX),
57 lengthY(maximumY - minimumY),
58 lengthZ(maximumZ - minimumZ),
59 center(
60 0.5 * (maximumX + minimumX),
61 0.5 * (maximumY + minimumY),
62 0.5 * (maximumZ + minimumZ)) {}
63
67 double minimumX;
68
72 double minimumY;
73
77 double minimumZ;
78
82 double maximumX;
83
87 double maximumY;
88
92 double maximumZ;
93
97 double lengthX;
98
102 double lengthY;
103
107 double lengthZ;
108
112 glm::dvec3 center;
113
120 constexpr bool contains(const glm::dvec3& position) const noexcept {
121 return position.x >= this->minimumX && position.x <= this->maximumX &&
122 position.y >= this->minimumY && position.y <= this->maximumY &&
123 position.z >= this->minimumZ && position.z <= this->maximumZ;
124 }
125
133 static AxisAlignedBox fromPositions(const std::vector<glm::dvec3>& positions);
134};
135
136} // namespace CesiumGeometry
Basic geometry classes for Cesium.
An Axis-Aligned Bounding Box (AABB), where the axes of the box are aligned with the axes of the coord...
double maximumY
The maximum y-coordinate.
constexpr AxisAlignedBox() noexcept
Creates an empty AABB with a length, width, and height of zero, with the center located at (0,...
double lengthY
The length of the box on the y-axis.
constexpr AxisAlignedBox(double minimumX_, double minimumY_, double minimumZ_, double maximumX_, double maximumY_, double maximumZ_) noexcept
Creates a new AABB using the range of coordinates the box covers.
double lengthX
The length of the box on the x-axis.
double minimumY
The minimum y-coordinate.
double minimumZ
The minimum z-coordinate.
static AxisAlignedBox fromPositions(const std::vector< glm::dvec3 > &positions)
Creates a tight-fitting, axis-aligned bounding box that contains all of the input positions.
double maximumX
The maximum x-coordinate.
glm::dvec3 center
The center of the box.
constexpr bool contains(const glm::dvec3 &position) const noexcept
Checks if this AABB contains the given position.
double minimumX
The minimum x-coordinate.
double maximumZ
The maximum z-coordinate.
double lengthZ
The length of the box on the z-axis.