mal-math
C++20 mathematics library.
|
Represents a geometric ray in 3D space. More...
#include "ray.hpp"
Public Member Functions | |
Ray ()=default | |
Default constructor. | |
Ray (vec3 const &origin, vec3 const &direction) | |
Constructs a Ray with a given origin and direction. | |
constexpr vec3 const & | origin () const noexcept |
Retrieves the ray's origin (const version). | |
constexpr vec3 & | origin () noexcept |
Retrieves the ray's origin. | |
constexpr vec3 const & | direction () const noexcept |
Retrieves the ray's direction (const version). | |
constexpr vec3 const & | inv_direction () const noexcept |
Retrieves the inverse of the ray's direction. | |
constexpr ivec3 const & | sign () const noexcept |
Retrieves the sign of the inverse direction for each axis. | |
void | SetDirection (vec3 const &new_direction) |
Sets a new direction for the ray and updates associated attributes. | |
vec3 | PointAtParameter (float t) const |
Computes a point along the ray based on the given parameter. | |
Private Member Functions | |
void | OnDirectionUpdate () |
Updates attributes derived from the ray's direction. | |
Private Attributes | |
vec3 | origin_ |
The ray's starting point. | |
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. | |
Represents a geometric ray in 3D space.
The Ray class defines a ray originating from a point, extending infinitely in a given direction. It provides methods to query and set the origin and direction of the ray, as well as retrieving information beneficial for certain algorithms like intersection tests, such as the inverse direction and the sign.
|
default |
Default constructor.
|
inlinenodiscardconstexprnoexcept |
|
inlinenodiscardconstexprnoexcept |
|
inlineprivate |
|
inlinenodiscardconstexprnoexcept |
|
inlinenodiscardconstexprnoexcept |
|
inlinenodiscard |
|
inline |
|
inlinenodiscardconstexprnoexcept |
|
private |
|
private |
|
private |
|
private |