mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
box.hpp
Go to the documentation of this file.
1#pragma once
7#include "../math.hpp"
8
9namespace mal_math
10{
18 template<Primitive T>
19 struct TBox
20 {
22
25
27 static constexpr T Inf = std::numeric_limits<T>::infinity();
28
34 static constexpr TBox empty() { return { vector3{ Inf, Inf, Inf }, vector3{ -Inf, -Inf, -Inf } }; }
35
41 static constexpr TBox unit() { return { vector3{ -1.f, -1.f, -1.f }, vector3{ 1.f, 1.f, 1.f } }; }
42
43 constexpr vector3 size() const { return max - min; }
44 constexpr vector3 center() const { return (min + max) / 2.f; }
45 constexpr T radius() const { return length(size()) / 2.f; }
46
50 void reset()
51 {
52 constexpr T maxT = std::numeric_limits<T>::max();
53 min = vector3{ maxT , maxT , maxT };
54 max = -min;
55 }
56
63 template<typename U>
64 void expand(const TBox<U> &other)
65 {
66 expand(other.min);
67 expand(other.max);
68 }
75 template<AnyVec U>
76 void expand(const U &point) requires(U::size == 3)
77 {
78 rmin(min, point);
79 rmax(max, point);
80 }
81
89 bool contains(const vector3 &P) const
90 {
91 return
92 min[0] <= P[0] && P[0] <= max[0] &&
93 min[1] <= P[1] && P[1] <= max[1] &&
94 min[2] <= P[2] && P[2] <= max[2];
95 }
96
105 inline bool Intersect(Ray const &ray, T &nearest_t) const
106 {
107 float tmin, tmax, tymin, tymax, tzmin, tzmax;
108
109 auto const &bounds = reinterpret_cast<std::array<vector3, 2> const &>(*this);
110
111 tmin = (bounds[ray.sign()[0]].x - ray.origin().x) * ray.inv_direction().x;
112 tmax = (bounds[1ll - ray.sign()[0]].x - ray.origin().x) * ray.inv_direction().x;
113 tymin = (bounds[ray.sign()[1]].y - ray.origin().y) * ray.inv_direction().y;
114 tymax = (bounds[1ll - ray.sign()[1]].y - ray.origin().y) * ray.inv_direction().y;
115
116 if ((tmin > tymax) || (tymin > tmax))
117 return false;
118
119 if (tymin > tmin)
120 tmin = tymin;
121 if (tymax < tmax)
122 tmax = tymax;
123
124 tzmin = (bounds[ray.sign()[2]].z - ray.origin().z) * ray.inv_direction().z;
125 tzmax = (bounds[1ll - ray.sign()[2]].z - ray.origin().z) * ray.inv_direction().z;
126
127 if ((tmin > tzmax) || (tzmin > tmax))
128 return false;
129
130 if (tzmin > tmin)
131 tmin = tzmin;
132 if (tzmax < tmax)
133 tmax = tzmax;
134
135 float t = tmin;
136
137 if (t < 0)
138 {
139 t = tmax;
140 if (t < 0 || t > nearest_t)
141 return false;
142 }
143 nearest_t = t;
144 return true;
145 }
146
155 inline bool Intersect(Ray const &ray, Intersection &nearest) const
156 {
157 if(Intersect(ray, nearest.t))
158 {
159 nearest.point = ray.PointAtParameter(nearest.t);
160 return true;
161 }
162 return false;
163 }
164 };
165
166 using Box = TBox<float>;
169}
Represents a geometric ray in 3D space.
Definition ray.hpp:24
constexpr ivec3 const & sign() const noexcept
Retrieves the sign of the inverse direction for each axis.
Definition ray.hpp:46
vec3 PointAtParameter(float t) const
Computes a point along the ray based on the given parameter.
Definition ray.hpp:61
constexpr vec3 const & origin() const noexcept
Retrieves the ray's origin (const version).
Definition ray.hpp:38
constexpr vec3 const & inv_direction() const noexcept
Retrieves the inverse of the ray's direction.
Definition ray.hpp:44
Provides various mathematical utilities, vector operations, and custom hash specializations.
Contains mathematical utility functions and classes.
constexpr T length(qua< T > const &q) noexcept
Computes the length (or magnitude) of a quaternion.
constexpr void rmin(T &left, U const &max) noexcept
Modifies left in-place, setting each element to the minimum of itself and the corresponding element i...
Definition vec_math.inl:830
constexpr void rmax(T &left, U const &min) noexcept
Modifies left in-place, setting each element to the maximum of itself and the corresponding element i...
Definition vec_math.inl:839
Represents the data of a ray's intersection with an object.
float t
The intersection parameter.
vec3 point
The 3D point of intersection.
A templated bounding box structure in 3D.
Definition box.hpp:20
bool contains(const vector3 &P) const
Checks if the box contains a given point.
Definition box.hpp:89
static constexpr T Inf
Infinity value for the primitive type used to define the box coordinates.
Definition box.hpp:27
constexpr T radius() const
Returns the radius of a sphere that tightly encloses the box.
Definition box.hpp:45
static constexpr TBox empty()
Returns an empty box.
Definition box.hpp:34
bool Intersect(Ray const &ray, Intersection &nearest) const
Checks if a ray intersects with the box and updates the nearest intersection point.
Definition box.hpp:155
vector3 min
The minimum point of the box in 3D space.
Definition box.hpp:23
bool Intersect(Ray const &ray, T &nearest_t) const
Checks if a ray intersects with the box and updates the nearest intersection distance.
Definition box.hpp:105
void expand(const TBox< U > &other)
Expands the box to include another box.
Definition box.hpp:64
constexpr vector3 size() const
Returns the dimensions of the box.
Definition box.hpp:43
constexpr vector3 center() const
Returns the center point of the box.
Definition box.hpp:44
static constexpr TBox unit()
Returns a unit box.
Definition box.hpp:41
vector3 max
The maximum point of the box in 3D space.
Definition box.hpp:24
void expand(const U &point)
Expands the box to include a point.
Definition box.hpp:76
void reset()
Resets the box to its default state.
Definition box.hpp:50
Represents a 3D vector of a given primitive type.
Definition vec3.hpp:24
Definition of the mathematical vector with fixed size L and type T
Definition vecn.hpp:22