mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
math.hpp File Reference

Provides various mathematical utilities, vector operations, and custom hash specializations. More...

#include "math/mat.hpp"
#include "math/ray.hpp"
#include "math/intersection.hpp"
#include "math/triangle.hpp"
#include "math/plane.hpp"
#include "math/box.hpp"
#include "math/quaternion.hpp"
#include "math/sphere.hpp"
#include "math/random.hpp"
Include dependency graph for math.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  std::hash< mal_math::vec< size_x, vector_type > >
 Hash specialization for mal_math::vec. More...
 
struct  std::hash< mal_math::mat< size_x, size_y, matrix_type > >
 Hash specialization for mal_math::vec. More...
 
struct  std::hash< mal_math::qua< quaternion_type > >
 Hash specialization for mal_math::vec. More...
 

Namespaces

namespace  mal_math
 Contains mathematical utility functions and classes.
 
namespace  std
 STL namespace.
 

Functions

template<AnyVec Vector>
constexpr vec< Vector::size, std::remove_const_t< typename Vector::type > > mal_math::reflect (Vector const &normal, Vector const &incident) noexcept
 Computes the reflection of an incident vector based on a surface's normal.
 
template<AnyVec Vector>
constexpr vec< Vector::size, std::remove_const_t< typename Vector::type > > mal_math::refract (Vector const &normal, Vector const &incident, float eta) noexcept
 Computes the refraction of a vector given an interface's normal and an index of refraction.
 

Detailed Description

Provides various mathematical utilities, vector operations, and custom hash specializations.

This file contains a collection of mathematical functions and classes tailored for graphics and physics calculations. It includes functionalities for reflection, refraction, and specialized hash functions for custom math types. Specific utilities involve operations on vectors, matrices, quaternions, and other geometric primitives.

Definition in file math.hpp.