mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
ray.hpp
Go to the documentation of this file.
1#pragma once
2#include "../math.hpp"
12namespace mal_math
13{
23 class Ray
24 {
25 public:
27 Ray() = default;
38 [[nodiscard]] constexpr vec3 const &origin() const noexcept { return origin_; }
40 [[nodiscard]] constexpr vec3 &origin() noexcept { return origin_; }
42 [[nodiscard]] constexpr vec3 const &direction() const noexcept { return direction_; }
44 [[nodiscard]] constexpr vec3 const &inv_direction() const noexcept { return inv_direction_; }
46 [[nodiscard]] constexpr ivec3 const &sign() const noexcept { return sign_; }
51 void SetDirection(vec3 const &new_direction)
52 {
53 direction_ = new_direction;
55 }
61 [[nodiscard]] vec3 PointAtParameter(float t) const
62 {
63 return origin_ + direction_ * t;
64 }
65
66 private:
69 {
72 }
77 };
78}; // namespace mal_math
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
constexpr vec3 & origin() noexcept
Retrieves the ray's origin.
Definition ray.hpp:40
vec3 PointAtParameter(float t) const
Computes a point along the ray based on the given parameter.
Definition ray.hpp:61
void SetDirection(vec3 const &new_direction)
Sets a new direction for the ray and updates associated attributes.
Definition ray.hpp:51
vec3 direction_
The direction in which the ray extends.
Definition ray.hpp:74
vec3 inv_direction_
The inverse of the ray's direction.
Definition ray.hpp:75
ivec3 sign_
Sign of the inverse direction for each axis.
Definition ray.hpp:76
vec3 origin_
The ray's starting point.
Definition ray.hpp:73
constexpr vec3 const & origin() const noexcept
Retrieves the ray's origin (const version).
Definition ray.hpp:38
Ray(vec3 const &origin, vec3 const &direction)
Constructs a Ray with a given origin and direction.
Definition ray.hpp:33
constexpr vec3 const & inv_direction() const noexcept
Retrieves the inverse of the ray's direction.
Definition ray.hpp:44
constexpr vec3 const & direction() const noexcept
Retrieves the ray's direction (const version).
Definition ray.hpp:42
Ray()=default
Default constructor.
void OnDirectionUpdate()
Updates attributes derived from the ray's direction.
Definition ray.hpp:68
Provides various mathematical utilities, vector operations, and custom hash specializations.
Contains mathematical utility functions and classes.