mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
mal_math::Triangle Struct Reference

Represents a triangle defined by three 3D points. More...

#include "triangle.hpp"

Collaboration diagram for mal_math::Triangle:
[legend]

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.
 

Detailed Description

Represents a triangle defined by three 3D points.

Definition at line 17 of file triangle.hpp.

Member Function Documentation

◆ Intersect() [1/4]

bool mal_math::Triangle::Intersect ( float & nearest_t,
Ray const & ray ) const
inlinenodiscard

Determines if a ray intersects with this triangle.

Parameters
nearest_tDistance from the ray's origin to the intersection point.
rayThe ray for intersection testing.
Returns
bool Returns true if there is an intersection, otherwise false.

Definition at line 88 of file triangle.hpp.

Here is the call graph for this function:

◆ Intersect() [2/4]

bool mal_math::Triangle::Intersect ( Intersection & nearest,
Ray const & ray ) const
inlinenodiscard

Determines if a ray intersects with this triangle and updates intersection details.

Parameters
nearestContains intersection information that will be updated if an intersection occurs.
rayThe ray for intersection testing.
Returns
bool Returns true if there is an intersection, otherwise false.

Definition at line 99 of file triangle.hpp.

Here is the call graph for this function:

◆ Intersect() [3/4]

static bool mal_math::Triangle::Intersect ( vec3 const & p0,
vec3 const & p1,
vec3 const & p2,
float & nearest_t,
Ray const & ray )
inlinestaticnodiscard

Determines if a ray intersects with the triangle using its vertices.

Parameters
p0First vertex of the triangle.
p1Second vertex of the triangle.
p2Third vertex of the triangle.
nearest_tDistance from the ray's origin to the intersection point.
rayThe ray for intersection testing.
Returns
bool Returns true if there is an intersection, otherwise false.

Definition at line 32 of file triangle.hpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Intersect() [4/4]

static bool mal_math::Triangle::Intersect ( vec3 const & p0,
vec3 const & p1,
vec3 const & p2,
Intersection & nearest,
Ray const & ray )
inlinestaticnodiscard

Determines if a ray intersects with the triangle and updates intersection details.

Parameters
p0First vertex of the triangle.
p1Second vertex of the triangle.
p2Third vertex of the triangle.
nearestContains intersection information that will be updated if an intersection occurs.
rayThe ray for intersection testing.
Returns
bool Returns true if there is an intersection, otherwise false.

Definition at line 72 of file triangle.hpp.

Here is the call graph for this function:

Member Data Documentation

◆ a

vec3 mal_math::Triangle::a

First vertex of the triangle.

Definition at line 19 of file triangle.hpp.

◆ b

vec3 mal_math::Triangle::b

Second vertex of the triangle.

Definition at line 20 of file triangle.hpp.

◆ c

vec3 mal_math::Triangle::c

Third vertex of the triangle.

Definition at line 21 of file triangle.hpp.


The documentation for this struct was generated from the following file: