27 static constexpr T
Inf = std::numeric_limits<T>::infinity();
52 constexpr T maxT = std::numeric_limits<T>::max();
76 void expand(
const U &point)
requires(U::size == 3)
76 void expand(
const U &point)
requires(U::size == 3) {
…}
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];
107 float tmin, tmax, tymin, tymax, tzmin, tzmax;
109 auto const &bounds =
reinterpret_cast<std::array<vector3, 2>
const &
>(*this);
116 if ((tmin > tymax) || (tymin > tmax))
127 if ((tmin > tzmax) || (tzmin > tmax))
140 if (t < 0 || t > nearest_t)
Represents a geometric ray in 3D space.
constexpr ivec3 const & sign() const noexcept
Retrieves the sign of the inverse direction for each axis.
vec3 PointAtParameter(float t) const
Computes a point along the ray based on the given parameter.
constexpr vec3 const & origin() const noexcept
Retrieves the ray's origin (const version).
constexpr vec3 const & inv_direction() const noexcept
Retrieves the inverse of the ray's direction.
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...
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...
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.
bool contains(const vector3 &P) const
Checks if the box contains a given point.
static constexpr T Inf
Infinity value for the primitive type used to define the box coordinates.
constexpr T radius() const
Returns the radius of a sphere that tightly encloses the box.
static constexpr TBox empty()
Returns an empty box.
bool Intersect(Ray const &ray, Intersection &nearest) const
Checks if a ray intersects with the box and updates the nearest intersection point.
vector3 min
The minimum point of the box in 3D space.
bool Intersect(Ray const &ray, T &nearest_t) const
Checks if a ray intersects with the box and updates the nearest intersection distance.
void expand(const TBox< U > &other)
Expands the box to include another box.
constexpr vector3 size() const
Returns the dimensions of the box.
constexpr vector3 center() const
Returns the center point of the box.
static constexpr TBox unit()
Returns a unit box.
vector3 max
The maximum point of the box in 3D space.
void expand(const U &point)
Expands the box to include a point.
void reset()
Resets the box to its default state.
Represents a 3D vector of a given primitive type.
Definition of the mathematical vector with fixed size L and type T