mal-math
C++20 mathematics library.
|
Represents a triangle defined by three 3D points. More...
#include "triangle.hpp"
Public Member Functions | |
bool | Intersect (float &nearest_t, Ray const &ray) const |
Determines if a ray intersects with this triangle. | |
bool | Intersect (Intersection &nearest, Ray const &ray) const |
Determines if a ray intersects with this triangle and updates intersection details. | |
Static Public Member Functions | |
static bool | Intersect (vec3 const &p0, vec3 const &p1, vec3 const &p2, float &nearest_t, Ray const &ray) |
Determines if a ray intersects with the triangle using its vertices. | |
static bool | Intersect (vec3 const &p0, vec3 const &p1, vec3 const &p2, Intersection &nearest, Ray const &ray) |
Determines if a ray intersects with the triangle and updates intersection details. | |
Public Attributes | |
vec3 | a |
First vertex of the triangle. | |
vec3 | b |
Second vertex of the triangle. | |
vec3 | c |
Third vertex of the triangle. | |
Represents a triangle defined by three 3D points.
Definition at line 17 of file triangle.hpp.
|
inlinenodiscard |
Determines if a ray intersects with this triangle.
nearest_t | Distance from the ray's origin to the intersection point. |
ray | The ray for intersection testing. |
Definition at line 88 of file triangle.hpp.
|
inlinenodiscard |
Determines if a ray intersects with this triangle and updates intersection details.
nearest | Contains intersection information that will be updated if an intersection occurs. |
ray | The ray for intersection testing. |
Definition at line 99 of file triangle.hpp.
|
inlinestaticnodiscard |
Determines if a ray intersects with the triangle using its vertices.
p0 | First vertex of the triangle. |
p1 | Second vertex of the triangle. |
p2 | Third vertex of the triangle. |
nearest_t | Distance from the ray's origin to the intersection point. |
ray | The ray for intersection testing. |
Definition at line 32 of file triangle.hpp.
|
inlinestaticnodiscard |
Determines if a ray intersects with the triangle and updates intersection details.
p0 | First vertex of the triangle. |
p1 | Second vertex of the triangle. |
p2 | Third vertex of the triangle. |
nearest | Contains intersection information that will be updated if an intersection occurs. |
ray | The ray for intersection testing. |
Definition at line 72 of file triangle.hpp.
vec3 mal_math::Triangle::a |
First vertex of the triangle.
Definition at line 19 of file triangle.hpp.
vec3 mal_math::Triangle::b |
Second vertex of the triangle.
Definition at line 20 of file triangle.hpp.
vec3 mal_math::Triangle::c |
Third vertex of the triangle.
Definition at line 21 of file triangle.hpp.