Represents a geometric ray in 3D space.
constexpr ivec3 const & sign() const noexcept
Retrieves the sign of the inverse direction for each axis.
constexpr vec3 & origin() noexcept
Retrieves the ray's origin.
vec3 PointAtParameter(float t) const
Computes a point along the ray based on the given parameter.
void SetDirection(vec3 const &new_direction)
Sets a new direction for the ray and updates associated attributes.
vec3 direction_
The direction in which the ray extends.
vec3 inv_direction_
The inverse of the ray's direction.
ivec3 sign_
Sign of the inverse direction for each axis.
vec3 origin_
The ray's starting point.
constexpr vec3 const & origin() const noexcept
Retrieves the ray's origin (const version).
Ray(vec3 const &origin, vec3 const &direction)
Constructs a Ray with a given origin and direction.
constexpr vec3 const & inv_direction() const noexcept
Retrieves the inverse of the ray's direction.
constexpr vec3 const & direction() const noexcept
Retrieves the ray's direction (const version).
Ray()=default
Default constructor.
void OnDirectionUpdate()
Updates attributes derived from the ray's direction.
Provides various mathematical utilities, vector operations, and custom hash specializations.
Contains mathematical utility functions and classes.