mal-math
C++20 mathematics library.
|
Contains mathematical utility functions and classes. More...
Namespaces | |
namespace | _detail |
namespace | random |
Classes | |
struct | Intersection |
Represents the data of a ray's intersection with an object. More... | |
class | mat |
Definition of matrix with dimensions rows x columns and type T More... | |
struct | Plane |
Represents a plane in 3D space defined by its normal and two vectors. More... | |
class | qua |
Represents a quaternion with primitive type T. More... | |
class | Ray |
Represents a geometric ray in 3D space. More... | |
struct | rmat |
Definition of a reference matrix with dimensions rows x columns and type T More... | |
struct | Sphere |
A geometric representation of a sphere in 3D space. More... | |
struct | TBox |
A templated bounding box structure in 3D. More... | |
struct | Triangle |
Represents a triangle defined by three 3D points. More... | |
struct | vec |
Definition of the mathematical vector with fixed size L and type T More... | |
struct | vec< 2, T > |
2D vector template class. More... | |
struct | vec< 3, T > |
Represents a 3D vector of a given primitive type. More... | |
struct | vec< 4, T > |
Represents a 4D vector of a given primitive type. More... | |
Concepts | |
concept | Primitive |
Concept that ensures a type is either floating point or integral. | |
concept | AnyMat |
Concept to determine if a type is any kind of matrix. | |
concept | AnyVec |
Concept to determine if a type is any kind of vector. | |
concept | Vec |
Concept to determine if a type is a default vector. | |
concept | RVec |
Concept to determine if a type is a reference vector. | |
Typedefs | |
using | Box = TBox<float> |
Box defined with floats. | |
using | Boxf = TBox<float> |
Same as Box. | |
using | Boxd = TBox<double> |
Box defined with doubles. | |
using | mat4 = mat<4, 4, float> |
4x4 matrix with float elements. | |
using | dmat4 = mat<4, 4, double> |
4x4 matrix with double elements. | |
using | imat4 = mat<4, 4, int> |
4x4 matrix with integer elements. | |
using | mat4x4 = mat<4, 4, float> |
4x4 matrix with float elements. | |
using | dmat4x4 = mat<4, 4, double> |
4x4 matrix with double elements. | |
using | imat4x4 = mat<4, 4, int> |
4x4 matrix with integer elements. | |
using | mat3 = mat<3, 3, float> |
3x3 matrix with float elements. | |
using | dmat3 = mat<3, 3, double> |
3x3 matrix with double elements. | |
using | imat3 = mat<3, 3, int> |
3x3 matrix with integer elements. | |
using | mat3x3 = mat<3, 3, float> |
3x3 matrix with float elements. | |
using | dmat3x3 = mat<3, 3, double> |
3x3 matrix with double elements. | |
using | imat3x3 = mat<3, 3, int> |
3x3 matrix with integer elements. | |
using | mat2 = mat<2, 2, float> |
2x2 matrix with float elements. | |
using | dmat2 = mat<2, 2, double> |
2x2 matrix with double elements. | |
using | imat2 = mat<2, 2, int> |
2x2 matrix with integer elements. | |
using | mat2x2 = mat<2, 2, float> |
2x2 matrix with float elements. | |
using | dmat2x2 = mat<2, 2, double> |
2x2 matrix with double elements. | |
using | imat2x2 = mat<2, 2, int> |
2x2 matrix with integer elements. | |
using | mat2x3 = mat<2, 3, float> |
2x3 matrix with float elements. | |
using | dmat2x3 = mat<2, 3, double> |
2x3 matrix with double elements. | |
using | imat2x3 = mat<2, 3, int> |
2x3 matrix with integer elements. | |
using | mat3x2 = mat<3, 2, float> |
3x2 matrix with float elements. | |
using | dmat3x2 = mat<3, 2, double> |
3x2 matrix with double elements. | |
using | imat3x2 = mat<3, 2, int> |
3x2 matrix with integer elements. | |
using | mat2x4 = mat<2, 4, float> |
2x4 matrix with float elements. | |
using | dmat2x4 = mat<2, 4, double> |
2x4 matrix with double elements. | |
using | imat2x4 = mat<2, 4, int> |
2x4 matrix with integer elements. | |
using | mat4x2 = mat<4, 2, float> |
4x2 matrix with float elements. | |
using | dmat4x2 = mat<4, 2, double> |
4x2 matrix with double elements. | |
using | imat4x2 = mat<4, 2, int> |
4x2 matrix with integer elements. | |
using | mat3x4 = mat<3, 4, float> |
3x4 matrix with float elements. | |
using | dmat3x4 = mat<3, 4, double> |
3x4 matrix with double elements. | |
using | imat3x4 = mat<3, 4, int> |
3x4 matrix with integer elements. | |
using | mat4x3 = mat<4, 3, float> |
4x3 matrix with float elements. | |
using | dmat4x3 = mat<4, 3, double> |
4x3 matrix with double elements. | |
using | imat4x3 = mat<4, 3, int> |
4x3 matrix with integer elements. | |
using | rmat4 = rmat<4, 4, float> |
4x4 reference matrix to float elements. | |
using | drmat4 = rmat<4, 4, double> |
4x4 reference matrix to double elements. | |
using | irmat4 = rmat<4, 4, int> |
4x4 reference matrix to integer elements. | |
using | rmat4x4 = rmat<4, 4, float> |
4x4 reference matrix to float elements. | |
using | drmat4x4 = rmat<4, 4, double> |
4x4 reference matrix to double elements. | |
using | irmat4x4 = rmat<4, 4, int> |
4x4 reference matrix to integer elements. | |
using | rmat3 = rmat<3, 3, float> |
3x3 reference matrix to float elements. | |
using | drmat3 = rmat<3, 3, double> |
3x3 reference matrix to double elements. | |
using | irmat3 = rmat<3, 3, int> |
3x3 reference matrix to integer elements. | |
using | rmat3x3 = rmat<3, 3, float> |
3x3 reference matrix to float elements. | |
using | drmat3x3 = rmat<3, 3, double> |
3x3 reference matrix to double elements. | |
using | irmat3x3 = rmat<3, 3, int> |
3x3 reference matrix to integer elements. | |
using | rmat2 = rmat<2, 2, float> |
2x2 reference matrix to float elements. | |
using | drmat2 = rmat<2, 2, double> |
2x2 reference matrix to double elements. | |
using | irmat2 = rmat<2, 2, int> |
2x2 reference matrix to integer elements. | |
using | rmat2x2 = rmat<2, 2, float> |
2x2 reference matrix to float elements. | |
using | drmat2x2 = rmat<2, 2, double> |
2x2 reference matrix to double elements. | |
using | irmat2x2 = rmat<2, 2, int> |
2x2 reference matrix to integer elements. | |
using | rmat2x3 = rmat<2, 3, float> |
2x3 reference matrix to float elements. | |
using | drmat2x3 = rmat<2, 3, double> |
2x3 reference matrix to double elements. | |
using | irmat2x3 = rmat<2, 3, int> |
2x3 reference matrix to integer elements. | |
using | rmat3x2 = rmat<3, 2, float> |
3x2 reference matrix to float elements. | |
using | drmat3x2 = rmat<3, 2, double> |
3x2 reference matrix to double elements. | |
using | irmat3x2 = rmat<3, 2, int> |
3x2 reference matrix to integer elements. | |
using | rmat2x4 = rmat<2, 4, float> |
2x4 reference matrix to float elements. | |
using | drmat2x4 = rmat<2, 4, double> |
2x4 reference matrix to double elements. | |
using | irmat2x4 = rmat<2, 4, int> |
2x4 reference matrix to integer elements. | |
using | rmat4x2 = rmat<4, 2, float> |
4x2 reference matrix to float elements. | |
using | drmat4x2 = rmat<4, 2, double> |
4x2 reference matrix to double elements. | |
using | irmat4x2 = rmat<4, 2, int> |
4x2 reference matrix to integer elements. | |
using | rmat3x4 = rmat<3, 4, float> |
3x4 reference matrix to float elements. | |
using | drmat3x4 = rmat<3, 4, double> |
3x4 reference matrix to double elements. | |
using | irmat3x4 = rmat<3, 4, int> |
3x4 reference matrix to integer elements. | |
using | rmat4x3 = rmat<4, 3, float> |
4x3 reference matrix to float elements. | |
using | drmat4x3 = rmat<4, 3, double> |
4x3 reference matrix to double elements. | |
using | irmat4x3 = rmat<4, 3, int> |
4x3 reference matrix to integer elements. | |
using | quat = qua<float> |
using | dquat = qua<double> |
using | vec2 = vec<2, float> |
using | dvec2 = vec<2, double> |
using | ivec2 = vec<2, int> |
using | uivec2 = vec<2, unsigned int> |
using | vec3 = vec<3, float> |
using | dvec3 = vec<3, double> |
using | ivec3 = vec<3, int> |
using | uivec3 = vec<3, unsigned int> |
using | vec4 = vec<4, float> |
using | dvec4 = vec<4, double> |
using | ivec4 = vec<4, int> |
using | uivec4 = vec<4, unsigned int> |
Functions | |
template<AnyVec Vector> | |
constexpr vec< Vector::size, std::remove_const_t< typename Vector::type > > | 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 > > | 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. | |
template<AnyMat U> | |
constexpr std::istream & | operator>> (std::istream &is, U &matrix) |
Reads a matrix from an input stream. | |
template<AnyMat U> | |
constexpr std::ostream & | operator<< (std::ostream &os, U const &matrix) |
Writes a matrix to an output stream. | |
template<AnyMat U, AnyMat V> requires (U::size.x == V::size.y) | |
constexpr auto | operator* (U const &lhs, V const &rhs) |
Multiplies two matrices. | |
template<AnyVec V, AnyMat M> requires (V::size == M::size.y) | |
constexpr auto | operator* (V const &left, M const &right) |
Multiplies a vector by a matrix. | |
template<AnyMat M, AnyVec V> requires (M::size.x == V::size) | |
constexpr auto | operator* (M const &left, V const &right) |
Multiplies a matrix by a vector. | |
template<AnyMat T, Primitive U> | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | operator* (T const &left, U const right) |
Multiplies a matrix by a primitive. | |
template<AnyMat T, Primitive U> | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | operator* (U const left, T const &right) |
Multiplies a matrix by a primitive. | |
template<AnyMat T, Primitive U> | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | operator- (T const &left, U const right) |
Subtracts a matrix from a primitive. | |
template<AnyMat T, Primitive U> | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | operator+ (U const left, T const &right) |
Adds a matrix to a primitive. | |
template<AnyMat T, AnyMat U> requires (T::size.x == U::size.x && T::size.y == U::size.y) | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | operator- (T const left, U const &right) |
Subtracts two matrices. | |
template<AnyMat T, AnyMat U> requires (T::size.x == U::size.x && T::size.y == U::size.y) | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | operator+ (T const &left, U const &right) |
Adds two matrices. | |
template<AnyMat T> | |
constexpr mat< T::size.y, T::size.x, std::remove_const_t< typename T::type > > | transpose (T const &matrix) |
Transposes a matrix. | |
template<AnyMat T> | |
constexpr rmat< T::size.y, T::size.x, typename T::type > | rtranspose (T &matrix) |
Transposes a matrix and returns a reference to it. | |
template<AnyMat T> | |
constexpr rmat< T::size.y, T::size.x, const typename T::type > | rctranspose (T const &matrix) |
Transposes a constant matrix and returns a constant reference to it. | |
template<AnyMat T> requires (T::size.x == T::size.y) | |
constexpr T::type | det (T const &matrix) |
Calculates the determinant of a square matrix. | |
template<AnyMat T> requires (T::size.x == T::size.y) | |
constexpr T::type | determinant (T const &matrix) |
Calculates the determinant of a square matrix. | |
template<AnyMat T> requires (T::size.x == T::size.y) | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | adj (T const &m) |
Computes the adjoint (or adjugate) of a square matrix. | |
template<AnyMat T> requires (T::size.x == T::size.y) | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | adjugate (T const &m) |
Alias for the adj() function to compute the adjugate of a matrix. | |
template<AnyMat T> requires (T::size.x == T::size.y) | |
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > | inverse (T const &matrix) |
Calculates the inverse of a square matrix. | |
template<AnyMat T, AnyVec V> requires (T::size.x == T::size.y && T::size.x == 4 && V::size == 3) | |
constexpr mat< 4, 4, std::remove_const_t< typename T::type > > | translate (T const &matrix, V const &vec) |
Translates a matrix by a given vector. | |
template<AnyMat T, Primitive U, AnyVec V> requires (T::size.x == T::size.y && T::size.x == 4 && V::size == 3) | |
constexpr mat< 4, 4, std::remove_const_t< typename T::type > > | rotate (T const &matrix, U angle, V const &axis) |
Rotates a matrix by a given angle around a given axis. | |
template<AnyMat T, AnyVec V> requires (T::size.x == T::size.y && T::size.x == 4 && V::size == 3) | |
constexpr mat< 4, 4, std::remove_const_t< typename T::type > > | scale (T const &matrix, V const &scale) |
Scales a matrix by a given vector. | |
template<AnyVec Position> requires (Position::size == 3) | |
constexpr mat< 4, 4, std::remove_const_t< typename Position::type > > | look_at (Position const &eye, Position const ¢er, Position const &up) |
Generates a look-at matrix for camera positioning. | |
template<Primitive T> | |
constexpr mat< 4, 4, T > | perspective (T fov_y, T aspect_ratio, T z_near, T z_far) |
Generates a perspective projection matrix. | |
template<Primitive T> | |
constexpr mat< 4, 4, T > | ortho (T left, T right, T bottom, T top, T zNear, T zFar) |
Generates an orthographic projection matrix. | |
template<Primitive T> | |
constexpr void | invert_orthonormal (mat< 4, 4, T > const &src, mat< 4, 4, T > &dst) |
Inverts an orthonormal matrix in-place and stores the result in a destination matrix. | |
template<Primitive T> | |
constexpr void | invert_orthogonal (mat< 4, 4, T > const &src, mat< 4, 4, T > &dst) |
Inverts an orthogonal matrix in-place and stores the result in a destination matrix. | |
template<Primitive T> | |
constexpr mat< 4, 4, T > | invert_orthonormal (mat< 4, 4, T > const &src) |
Returns an inverted orthonormal matrix. | |
template<Primitive T> | |
constexpr mat< 4, 4, T > | invert_orthogonal (mat< 4, 4, T > const &src) |
Returns an inverted orthogonal matrix. | |
template<AnyMat T> requires (T::size.x == T::size.y && T::size.x == 2) | |
constexpr T::type | det_2 (T const &m) |
template<AnyMat T> requires (T::size.x == T::size.y && T::size.x == 3) | |
constexpr T::type | det_3 (T const &m) |
template<AnyMat T> requires (T::size.x == T::size.y && T::size.x == 4) | |
constexpr T::type | det_4 (T const &m) |
template<Primitive T> requires (!std::numeric_limits<T>::is_integer) | |
constexpr mat< 4, 4, T > | perspective (T fov_y, T aspect_ratio, T z_near, T z_far) |
Generates a perspective projection matrix. | |
template<class T > requires (!std::numeric_limits<T>::is_integer) | |
bool | almost_equal (T x, T y, int ulp=2) |
Function to determine if two values are almost equal within a certain tolerance. | |
template<class T > requires (!std::numeric_limits<T>::is_integer) | |
constexpr T | radians (T x) noexcept |
Function to convert degrees to radians. | |
template<Primitive T> | |
constexpr T | clamp (T x, T min, T max) noexcept |
Function to clamp a value between a minimum and maximum. | |
template<Primitive T> | |
float | cos (T x) noexcept |
double | cos (double x) |
long double | cos (long double x) |
template<Primitive T> | |
float | sin (T x) noexcept |
double | sin (double x) |
long double | sin (long double x) |
template<Primitive T> | |
float | tan (T x) noexcept |
double | tan (double x) |
long double | tan (long double x) |
template<Primitive T> | |
float | acos (T x) noexcept |
double | acos (double x) |
long double | acos (long double x) |
template<Primitive T> | |
float | asin (T x) noexcept |
double | asin (double x) |
long double | asin (long double x) |
template<Primitive T> | |
float | atan (T x) noexcept |
double | atan (double x) |
long double | atan (long double x) |
template<Primitive T> | |
float | atan2 (T x, T y) noexcept |
double | atan2 (double x, double y) |
long double | atan2 (long double x, long double y) |
template<Primitive T> | |
float | cosh (T x) noexcept |
double | cosh (double x) |
long double | cosh (long double x) |
template<Primitive T> | |
float | sinh (T x) noexcept |
double | sinh (double x) |
long double | sinh (long double x) |
template<Primitive T> | |
float | tanh (T x) noexcept |
double | tanh (double x) |
long double | tanh (long double x) |
template<Primitive T> | |
float | acosh (T x) noexcept |
double | acosh (double x) |
long double | acosh (long double x) |
template<Primitive T> | |
float | asinh (T x) noexcept |
double | asinh (double x) |
long double | asinh (long double x) |
template<Primitive T> | |
float | atanh (T x) noexcept |
double | atanh (double x) |
long double | atanh (long double x) |
template<Primitive T> | |
float | exp (T x) noexcept |
double | exp (double x) |
long double | exp (long double x) |
template<Primitive T> | |
float | exp2 (T x) noexcept |
double | exp2 (double x) |
long double | exp2 (long double x) |
template<Primitive T> | |
float | expm1 (T x) noexcept |
double | expm1 (double x) |
long double | expm1 (long double x) |
template<Primitive T> | |
float | log (T x) noexcept |
double | log (double x) |
long double | log (long double x) |
template<Primitive T> | |
float | log2 (T x) noexcept |
double | log2 (double x) |
long double | log2 (long double x) |
template<Primitive T> | |
float | log10 (T x) noexcept |
double | log10 (double x) |
long double | log10 (long double x) |
template<Primitive T> | |
float | log1p (T x) noexcept |
double | log1p (double x) |
long double | log1p (long double x) |
template<Primitive T> | |
float | logb (T x) noexcept |
double | logb (double x) |
long double | logb (long double x) |
template<Primitive T> | |
float | sqrt (T x) noexcept |
double | sqrt (double x) |
long double | sqrt (long double x) |
template<Primitive T> | |
float | inversesqrt (T x) noexcept |
double | inversesqrt (double x) |
long double | inversesqrt (long double x) |
template<Primitive T> | |
T | abs (T x) noexcept |
template<Primitive T> | |
int | sign (T x) noexcept |
template<Primitive T> | |
T | floor (T x) noexcept |
template<Primitive T> | |
T | ceil (T x) noexcept |
template<Primitive T> | |
T | trunc (T x) noexcept |
template<Primitive T> | |
T | round (T x) noexcept |
template<Primitive T> | |
T | roundEven (T x) noexcept |
template<Primitive T> | |
T | fract (T x) noexcept |
template<Primitive T, Primitive U> | |
float | mod (T x, U y) noexcept |
double | mod (double x, double y) |
long double | mod (long double x, long double y) |
template<Primitive T, Primitive U> | |
float | pow (T x, U y) noexcept |
template<Primitive U> | |
double | pow (double x, U y) |
template<Primitive U> | |
long double | pow (long double x, U y) |
template<size_t size, Primitive T> | |
constexpr std::istream & | operator>> (std::istream &is, vec< size, T > &vec) |
Reads a vector of given size from an input stream. | |
template<size_t size, Primitive T> | |
constexpr std::ostream & | operator<< (std::ostream &os, vec< size, T > &vec) |
Writes a vector of given size to an output stream. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator* (U const value, qua< T > const &vector) noexcept |
Scalar-quaternion multiplication. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator/ (U const value, qua< T > const &vector) noexcept |
Scalar-quaternion division. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator* (qua< T > const &vector, U const value) noexcept |
Quaternion-scalar multiplication. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator/ (qua< T > const &vector, U const value) noexcept |
Quaternion-scalar division. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator+ (qua< T > const &left, qua< U > const &right) noexcept |
Quaternion addition. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator- (qua< T > const &left, qua< U > const &right) noexcept |
Quaternion subtraction. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator* (qua< T > const &left, qua< U > const &right) noexcept |
Quaternion multiplication. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | operator/ (qua< T > const &left, qua< U > const &right) noexcept |
Quaternion division. | |
template<Primitive T, Primitive U> | |
constexpr T | dot (qua< T > const &left, qua< U > const &right) noexcept |
Computes the dot product of two quaternions. | |
template<Primitive T> | |
constexpr T | angle (qua< T > const &quaternion) noexcept |
Computes the angle (or magnitude) of a quaternion. | |
template<Primitive T> | |
constexpr T | pitch (qua< T > const &quaternion) noexcept |
Computes the pitch from a quaternion. | |
template<Primitive T> | |
constexpr T | yaw (qua< T > const &quaternion) noexcept |
Computes the yaw from a quaternion. | |
template<Primitive T> | |
constexpr T | roll (qua< T > const &quaternion) noexcept |
Computes the roll from a quaternion. | |
template<Primitive T> | |
constexpr vec< 3, T > | QuaternionToEuler (qua< T > const &quaternion) noexcept |
Converts a quaternion to Euler angles. | |
template<Primitive T> | |
constexpr qua< T > | QuaternionFromEuler (vec< 3, T > const &angles) noexcept |
Creates a quaternion from Euler angles given in a vector. | |
template<Primitive T> requires (std::is_floating_point_v<T>) | |
constexpr qua< T > | QuaternionFromEuler (T roll, T pitch, T yaw) noexcept |
Creates a quaternion from individual Euler angles. | |
template<AnyMat U> requires (U::size.x == 3 && U::size.y == 3 && std::is_floating_point_v<typename U::type>) | |
constexpr qua< typename U::type > | QuaternionFromRotationMatrix (U const &mat) noexcept |
Creates a quaternion from a 3x3 rotation matrix. | |
template<Primitive T> | |
constexpr qua< T > | operator* (qua< T > const &q, qua< T > const &p) noexcept |
Quaternion-Quaternion multiplication. | |
template<Primitive T> | |
constexpr vec< 3, T > | operator* (qua< T > const &q, vec< 3, T > const &v) noexcept |
Quaternion-Vector multiplication. | |
template<Primitive T> | |
constexpr vec< 3, T > | operator* (vec< 3, T > const &v, qua< T > const &q) noexcept |
Vector-Quaternion multiplication. | |
template<Primitive T> | |
constexpr qua< T > | conjugate (qua< T > const &q) noexcept |
Computes the conjugate of a quaternion. | |
template<Primitive T> | |
constexpr qua< T > | inverse (qua< T > const &q) noexcept |
Computes the inverse of a quaternion. | |
template<Primitive T, Primitive U> | |
constexpr vec< 3, T > | cross (qua< T > const &left, vec< 3, U > const &right) noexcept |
Cross product between quaternion and vector. | |
template<Primitive T, Primitive U> | |
constexpr vec< 3, T > | cross (vec< 3, U > const &left, qua< T > const &right) noexcept |
Cross product between vector and quaternion. | |
template<Primitive T, Primitive U> | |
constexpr qua< T > | cross (qua< T > const &left, qua< U > const &right) noexcept |
Computes the cross product of two quaternions. | |
template<Primitive T> | |
constexpr mat< 4, 4, T > | rotate (mat< 4, 4, T > const &matrix, qua< T > const &q) noexcept |
Rotates a 4x4 matrix using a quaternion. | |
template<Primitive T> | |
constexpr T | length (qua< T > const &q) noexcept |
Computes the length (or magnitude) of a quaternion. | |
template<Primitive T> | |
constexpr qua< T > | normalize (qua< T > const &q) noexcept |
Normalizes a quaternion. | |
template<Primitive T> | |
constexpr std::istream & | operator>> (std::istream &is, qua< T > &vec) |
template<Primitive T> | |
constexpr std::ostream & | operator<< (std::ostream &os, qua< T > &vec) |
template<Primitive T> | |
qua< T > constexpr | conjugate (qua< T > const &q) noexcept |
Computes the conjugate of a quaternion. | |
template<Primitive T> | |
qua< T > constexpr | inverse (qua< T > const &q) noexcept |
Computes the inverse of a quaternion. | |
template<Primitive T> | |
constexpr qua< T > | rotate (mat< 4, 4, T > const &matrix, qua< T > const &q) noexcept |
Rotates a 4x4 matrix using a quaternion. | |
template<Primitive T, Primitive U> | |
constexpr vec< 3, T > | cross (vec< 3, T > const &left, vec< 3, U > const &right) |
Computes the cross product of two 3D vectors. | |
template<AnyVec U> | |
constexpr std::ostream & | operator<< (std::ostream &os, U &vec) |
Output stream operator overload for vector objects. | |
template<size_t n, AnyVec Vector> requires (n >= 2 && n <= Vector::size) | |
constexpr vec< n, typename Vector::type > & | as_rvec (Vector &v) noexcept |
Convert a given vector to a reference of vec with specified size and type. | |
template<AnyVec Vector> | |
constexpr vec< Vector::size, typename Vector::type > & | as_rvec (Vector &v) noexcept |
Convert a given vector to a reference of vec with the same size and type. | |
template<size_t n, Primitive U, AnyVec Vector> requires (n >= 2 && n <= Vector::size) | |
constexpr vec< n, U > | as_vec (Vector const &v) noexcept |
Create a new vector of a specified size and type from the given vector. | |
template<size_t n, AnyVec Vector> requires (n >= 2 && n <= Vector::size) | |
constexpr vec< n, std::remove_const_t< typename Vector::type > > | as_vec (Vector const &v) noexcept |
Create a new vector of a specified size from the given vector, preserving the type. | |
template<AnyVec Vector> | |
constexpr vec< Vector::size, std::remove_const_t< typename Vector::type > > | as_vec (Vector const &v) noexcept |
Create a new vector of the same size from the given vector, preserving the type. | |
template<size_t n, AnyVec Vector> requires (n >= 2 && n <= Vector::size) | |
constexpr vec< n, typename Vector::type > const & | as_crvec (Vector const &v) noexcept |
Convert a given const vector to a const reference of vec with specified size and type. | |
template<AnyVec Vector> | |
constexpr vec< Vector::size, typename Vector::type > const & | as_crvec (Vector const &v) noexcept |
Convert a given const vector to a const reference of vec with the same size and type. | |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator+ (vec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator- (vec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator* (vec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator/ (vec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator* (U const value, vec< size, T > const &vector) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator/ (U const value, vec< size, T > const &vector) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator+ (U const value, vec< size, T > const &vector) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator- (U const value, vec< size, T > const &vector) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator* (U const value, _detail::rvec< size, T > const &vector) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator+ (_detail::rvec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator- (_detail::rvec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator* (_detail::rvec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator/ (_detail::rvec< size, T > const &vector, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator% (_detail::rvec< size, T > const &left, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator+ (vec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator- (vec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator* (vec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator/ (vec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator% (vec< size, T > const &left, U const value) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator% (vec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator+ (_detail::rvec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator- (_detail::rvec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator* (_detail::rvec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator/ (_detail::rvec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator% (_detail::rvec< size, T > const &left, vec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator+ (_detail::rvec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator- (_detail::rvec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator* (_detail::rvec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator/ (_detail::rvec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator% (_detail::rvec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator+ (vec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator- (vec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator* (vec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator/ (vec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, T > | operator% (vec< size, T > const &left, _detail::rvec< size, U > const &right) noexcept |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr bool | operator== (T const &left, U const &right) noexcept |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr bool | operator!= (T const &left, U const &right) noexcept |
template<AnyVec T> | |
constexpr std::remove_const_t< typename T::type > | squared_length (T const &vector) noexcept |
Compute the squared length of the given vector. | |
template<AnyVec T> | |
constexpr auto | length (T const &vector) noexcept |
Compute the length (magnitude) of the given vector. | |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | unit_vector (T const &vector) noexcept |
Compute the unit vector (normalized vector) of the given vector. | |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | normalize (T const &vector) noexcept |
Normalize the given vector. | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr std::remove_const_t< typename T::type > | dot (T const &left, U const &right) noexcept |
Compute the dot product of two vectors. | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr std::remove_const_t< typename T::type > | angle (T const &left, U const &right) noexcept |
Compute the angle between two vectors. | |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | cos (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | sin (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | tan (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | acos (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | asin (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | atan (T const &vector) noexcept |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | atan (T const &left, U const &right) noexcept |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | atan2 (T const &left, U const &right) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | cosh (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | sinh (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | tanh (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | acosh (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | asinh (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | atanh (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | exp (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | exp2 (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | expm1 (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | log (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | log2 (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | log10 (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | log1p (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | logb (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | sqrt (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | inversesqrt (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | abs (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | sign (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | floor (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | ceil (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | trunc (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | round (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | roundEven (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | fract (T const &vector) noexcept |
template<AnyVec T> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | mod (T const &vector, typename T::type const &scalar) noexcept |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | mod (T const &left, U const &right) noexcept |
template<AnyVec T, Primitive U> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | pow (T const &vector, U const pow) noexcept |
template<AnyVec T, AnyVec U> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | pow (T const &vector1, U const &vector2) noexcept |
template<AnyVec T, AnyVec U> requires (T::size == U::size && T::size == 3) | |
constexpr vec< 3, std::remove_const_t< typename T::type > > | cross (T const &left, U const &right) noexcept |
Compute the cross product of two 3D vectors. | |
template<Primitive T, Primitive U> | |
constexpr void | rclamp (T &left, U const min, U const max) noexcept |
Clamp the value of left between min and max in-place. | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr void | rclamp (T &left, U const min, U const max) noexcept |
Clamp the value of left between min and max in-place. | |
template<AnyVec T, Primitive U> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | clamp (T const &left, U const min, U const max) noexcept |
Clamp the value of left between min and max . | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | clamp (T const &left, U const &min, U const &max) noexcept |
Clamp the value of left between min and max . | |
template<Primitive T, Primitive U> | |
constexpr T | clamp (T left, U const min, U const max) noexcept |
Clamp the value of left between min and max . | |
template<AnyVec T, Primitive U> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | min (T const &left, U const min) noexcept |
Returns a new vector with each element being the minimum of the corresponding element in left and max . | |
template<AnyVec T, Primitive U> | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | max (T const &left, U const max) noexcept |
Returns a new vector with each element being the maximum of the corresponding element in left and min . | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | min (T const &left, U const &min) noexcept |
Returns a new vector with each element being the minimum of the corresponding elements in left and right . | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr vec< T::size, std::remove_const_t< typename T::type > > | max (T const &left, U const &max) noexcept |
Returns a new vector with each element being the maximum of the corresponding elements in left and right . | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr void | rmin (T &left, U const &max) noexcept |
Modifies left in-place, setting each element to the minimum of itself and the corresponding element in max . | |
template<AnyVec T, AnyVec U> requires (T::size == U::size) | |
constexpr void | rmax (T &left, U const &min) noexcept |
Modifies left in-place, setting each element to the maximum of itself and the corresponding element in min . | |
template<AnyVec T, Primitive U> | |
constexpr void | rmin (T &left, U const max) noexcept |
Modifies left in-place, setting each element to the minimum of itself and max . | |
template<AnyVec T, Primitive U> | |
constexpr void | rmax (T &left, U const min) noexcept |
Modifies left in-place, setting each element to the maximum of itself and min . | |
template<AnyVec T> | |
constexpr std::remove_const_t< typename T::type > | distance (T const &left, T const &right) noexcept |
Compute the distance between two vectors. | |
template<typename T , Primitive U> | |
constexpr auto | lerp (T const &from, T const &to, U const param) noexcept |
Linearly interpolate between two values. | |
template<typename T , Primitive U> | |
constexpr auto | mix (T const &from, T const &to, U const param) noexcept |
Mix between two values (same as lerp). | |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator+ (U const value, _detail::rvec< size, T > const &vector) noexcept |
template<size_t size, Primitive T, Primitive U> | |
constexpr vec< size, std::remove_const_t< T > > | operator- (U const value, _detail::rvec< size, T > const &vector) noexcept |
Contains mathematical utility functions and classes.
A namespace dedicated for matrix mathematical operations and types.
The main namespace for the mathematical utilities.
using mal_math::Box = TBox<float> |
using mal_math::Boxd = TBox<double> |
using mal_math::Boxf = TBox<float> |
using mal_math::dmat2 = mat<2, 2, double> |
using mal_math::dmat2x2 = mat<2, 2, double> |
using mal_math::dmat2x3 = mat<2, 3, double> |
using mal_math::dmat2x4 = mat<2, 4, double> |
using mal_math::dmat3 = mat<3, 3, double> |
using mal_math::dmat3x2 = mat<3, 2, double> |
using mal_math::dmat3x3 = mat<3, 3, double> |
using mal_math::dmat3x4 = mat<3, 4, double> |
using mal_math::dmat4 = mat<4, 4, double> |
using mal_math::dmat4x2 = mat<4, 2, double> |
using mal_math::dmat4x3 = mat<4, 3, double> |
using mal_math::dmat4x4 = mat<4, 4, double> |
using mal_math::dquat = qua<double> |
Definition at line 270 of file quaternion.hpp.
using mal_math::drmat2 = rmat<2, 2, double> |
using mal_math::drmat2x2 = rmat<2, 2, double> |
using mal_math::drmat2x3 = rmat<2, 3, double> |
using mal_math::drmat2x4 = rmat<2, 4, double> |
using mal_math::drmat3 = rmat<3, 3, double> |
using mal_math::drmat3x2 = rmat<3, 2, double> |
using mal_math::drmat3x3 = rmat<3, 3, double> |
using mal_math::drmat3x4 = rmat<3, 4, double> |
using mal_math::drmat4 = rmat<4, 4, double> |
using mal_math::drmat4x2 = rmat<4, 2, double> |
using mal_math::drmat4x3 = rmat<4, 3, double> |
using mal_math::drmat4x4 = rmat<4, 4, double> |
using mal_math::dvec2 = vec<2, double> |
using mal_math::dvec3 = vec<3, double> |
using mal_math::dvec4 = vec<4, double> |
using mal_math::imat2 = mat<2, 2, int> |
using mal_math::imat2x2 = mat<2, 2, int> |
using mal_math::imat2x3 = mat<2, 3, int> |
using mal_math::imat2x4 = mat<2, 4, int> |
using mal_math::imat3 = mat<3, 3, int> |
using mal_math::imat3x2 = mat<3, 2, int> |
using mal_math::imat3x3 = mat<3, 3, int> |
using mal_math::imat3x4 = mat<3, 4, int> |
using mal_math::imat4 = mat<4, 4, int> |
using mal_math::imat4x2 = mat<4, 2, int> |
using mal_math::imat4x3 = mat<4, 3, int> |
using mal_math::imat4x4 = mat<4, 4, int> |
using mal_math::irmat2 = rmat<2, 2, int> |
using mal_math::irmat2x2 = rmat<2, 2, int> |
using mal_math::irmat2x3 = rmat<2, 3, int> |
using mal_math::irmat2x4 = rmat<2, 4, int> |
using mal_math::irmat3 = rmat<3, 3, int> |
using mal_math::irmat3x2 = rmat<3, 2, int> |
using mal_math::irmat3x3 = rmat<3, 3, int> |
using mal_math::irmat3x4 = rmat<3, 4, int> |
using mal_math::irmat4 = rmat<4, 4, int> |
using mal_math::irmat4x2 = rmat<4, 2, int> |
using mal_math::irmat4x3 = rmat<4, 3, int> |
using mal_math::irmat4x4 = rmat<4, 4, int> |
using mal_math::ivec2 = vec<2, int> |
using mal_math::ivec3 = vec<3, int> |
using mal_math::ivec4 = vec<4, int> |
using mal_math::mat2 = mat<2, 2, float> |
using mal_math::mat2x2 = mat<2, 2, float> |
using mal_math::mat2x3 = mat<2, 3, float> |
using mal_math::mat2x4 = mat<2, 4, float> |
using mal_math::mat3 = mat<3, 3, float> |
using mal_math::mat3x2 = mat<3, 2, float> |
using mal_math::mat3x3 = mat<3, 3, float> |
using mal_math::mat3x4 = mat<3, 4, float> |
using mal_math::mat4 = mat<4, 4, float> |
using mal_math::mat4x2 = mat<4, 2, float> |
using mal_math::mat4x3 = mat<4, 3, float> |
using mal_math::mat4x4 = mat<4, 4, float> |
using mal_math::quat = qua<float> |
Definition at line 269 of file quaternion.hpp.
using mal_math::rmat2 = rmat<2, 2, float> |
using mal_math::rmat2x2 = rmat<2, 2, float> |
using mal_math::rmat2x3 = rmat<2, 3, float> |
using mal_math::rmat2x4 = rmat<2, 4, float> |
using mal_math::rmat3 = rmat<3, 3, float> |
using mal_math::rmat3x2 = rmat<3, 2, float> |
using mal_math::rmat3x3 = rmat<3, 3, float> |
using mal_math::rmat3x4 = rmat<3, 4, float> |
using mal_math::rmat4 = rmat<4, 4, float> |
using mal_math::rmat4x2 = rmat<4, 2, float> |
using mal_math::rmat4x3 = rmat<4, 3, float> |
using mal_math::rmat4x4 = rmat<4, 4, float> |
using mal_math::uivec2 = vec<2, unsigned int> |
using mal_math::uivec3 = vec<3, unsigned int> |
using mal_math::uivec4 = vec<4, unsigned int> |
using mal_math::vec2 = vec<2, float> |
using mal_math::vec3 = vec<3, float> |
using mal_math::vec4 = vec<4, float> |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 231 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 232 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 259 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 260 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexpr |
Computes the adjoint (or adjugate) of a square matrix.
T | A matrix type satisfying the AnyMat concept. |
m | The input matrix. |
Definition at line 209 of file mat_math.inl.
|
constexpr |
Alias for the adj() function to compute the adjugate of a matrix.
Definition at line 234 of file mat_math.inl.
|
nodiscard |
Function to determine if two values are almost equal within a certain tolerance.
Definition at line 198 of file math-common.hpp.
|
nodiscardconstexprnoexcept |
Computes the angle (or magnitude) of a quaternion.
Definition at line 238 of file quaternion.inl.
|
constexprnoexcept |
Compute the angle between two vectors.
T | The type of the left vector. |
U | The type of the right vector. |
left | The left vector. |
right | The right vector. |
Definition at line 323 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Convert a given const vector to a const reference of vec with specified size and type.
n | The size of the resulting vector. |
Vector | The type of the input vector. |
v | The input const vector to be converted. |
Definition at line 67 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Convert a given const vector to a const reference of vec with the same size and type.
Vector | The type of the input vector. |
v | The input const vector to be converted. |
Definition at line 72 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Convert a given vector to a reference of vec with specified size and type.
n | The size of the resulting vector. |
Vector | The type of the input vector. |
v | The input vector to be converted. |
Definition at line 56 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Convert a given vector to a reference of vec with the same size and type.
Vector | The type of the input vector. |
v | The input vector to be converted. |
Definition at line 61 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Create a new vector of a specified size and type from the given vector.
n | The size of the resulting vector. |
U | The type of the resulting vector. |
Vector | The type of the input vector. |
v | The input vector to be converted. |
Definition at line 34 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Create a new vector of a specified size from the given vector, preserving the type.
n | The size of the resulting vector. |
Vector | The type of the input vector. |
v | The input vector to be converted. |
Definition at line 45 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Create a new vector of the same size from the given vector, preserving the type.
Vector | The type of the input vector. |
v | The input vector to be converted. |
Definition at line 51 of file vec_math.inl.
|
inlinenodiscard |
Definition at line 235 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 236 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 263 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 264 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 239 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 240 of file math-common.hpp.
|
constexprnoexcept |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 243 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 244 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 267 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 268 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
nodiscardconstexprnoexcept |
Clamp the value of left
between min
and max
.
T | Type of the value to be clamped. |
U | Type of the boundary values. |
left | The value to be clamped. |
min | The minimum value. |
max | The maximum value. |
Definition at line 756 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Clamp the value of left
between min
and max
.
T | Type of the value to be clamped. |
U | Type of the boundary values. |
left | The value to be clamped. |
min | The minimum value. |
max | The maximum value. |
Definition at line 734 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Clamp the value of left
between min
and max
.
T | Type of the value to be clamped. |
U | Type of the boundary values. |
left | The value to be clamped. |
min | The minimum value. |
max | The maximum value. |
Definition at line 777 of file vec_math.inl.
|
inlinenodiscardconstexprnoexcept |
Function to clamp a value between a minimum and maximum.
Definition at line 215 of file math-common.hpp.
Computes the conjugate of a quaternion.
Definition at line 281 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Computes the conjugate of a quaternion.
Definition at line 281 of file quaternion.inl.
|
inlinenodiscard |
Definition at line 219 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 220 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 247 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 248 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
nodiscardconstexprnoexcept |
Computes the cross product of two quaternions.
Definition at line 303 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Cross product between quaternion and vector.
Definition at line 293 of file quaternion.inl.
|
constexprnoexcept |
Compute the cross product of two 3D vectors.
T | Type of the left vector. |
U | Type of the right vector. |
left | The left vector. |
right | The right vector. |
Definition at line 687 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Cross product between vector and quaternion.
Definition at line 298 of file quaternion.inl.
|
constexpr |
Calculates the determinant of a square matrix.
Computes the determinant using an appropriate method based on the matrix size.
T | A matrix type satisfying the AnyMat concept. |
matrix | The matrix whose determinant is to be computed. |
Definition at line 191 of file mat_math.inl.
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
Calculates the determinant of a square matrix.
T | A matrix type satisfying the AnyMat concept. |
matrix | The matrix for which to compute the determinant. |
Definition at line 203 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Compute the distance between two vectors.
T | Type of the vectors. |
left | The first vector. |
right | The second vector. |
Definition at line 877 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Computes the dot product of two quaternions.
Definition at line 227 of file quaternion.inl.
|
constexprnoexcept |
Compute the dot product of two vectors.
T | The type of the left vector. |
U | The type of the right vector. |
left | The left vector. |
right | The right vector. |
Definition at line 311 of file vec_math.inl.
|
inlinenodiscard |
Definition at line 271 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 272 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 275 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 276 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 279 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 280 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
Computes the inverse of a quaternion.
Definition at line 287 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Computes the inverse of a quaternion.
Definition at line 287 of file quaternion.inl.
|
constexpr |
Calculates the inverse of a square matrix.
T | A matrix type satisfying the AnyMat concept. |
matrix | The matrix for which to compute the inverse. |
Definition at line 240 of file mat_math.inl.
|
inlinenodiscard |
Definition at line 307 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 308 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexpr |
Returns an inverted orthogonal matrix.
T | A primitive type. |
src | The source orthogonal matrix. |
Definition at line 423 of file mat_math.inl.
|
constexpr |
Inverts an orthogonal matrix in-place and stores the result in a destination matrix.
T | A primitive type. |
src | The source orthogonal matrix. |
dst | The destination matrix where the result will be stored. |
Definition at line 369 of file mat_math.inl.
|
constexpr |
Returns an inverted orthonormal matrix.
T | A primitive type. |
src | The source orthonormal matrix. |
Definition at line 416 of file mat_math.inl.
|
constexpr |
Inverts an orthonormal matrix in-place and stores the result in a destination matrix.
T | A primitive type. |
src | The source orthonormal matrix. |
dst | The destination matrix where the result will be stored. |
Definition at line 349 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Computes the length (or magnitude) of a quaternion.
Definition at line 403 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Compute the length (magnitude) of the given vector.
T | The vector type. |
vector | The input vector. |
Definition at line 294 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Linearly interpolate between two values.
T | Type of the values to interpolate between. |
U | Type of the interpolation parameter. |
from | The starting value. |
to | The target value. |
param | The interpolation parameter (usually between 0 and 1). |
Definition at line 882 of file vec_math.inl.
|
inlinenodiscard |
Definition at line 283 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 284 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 291 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 292 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 295 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 296 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 287 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 288 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 299 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 300 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexpr |
Generates a look-at matrix for camera positioning.
Position | A vector type. |
eye | The position of the observer. |
center | The position where the observer is looking at. |
up | The up direction for the observer. |
Definition at line 298 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Returns a new vector with each element being the maximum of the corresponding elements in left
and right
.
T | Type of the left vector. |
U | Type of the right vector. |
left | First input vector. |
right | Second input vector. |
Definition at line 820 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Returns a new vector with each element being the maximum of the corresponding element in left
and min
.
T | Vector type. |
U | Primitive type for the min value. |
left | Input vector. |
min | Minimum value for each element. |
Definition at line 798 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Returns a new vector with each element being the minimum of the corresponding elements in left
and right
.
T | Type of the left vector. |
U | Type of the right vector. |
left | First input vector. |
right | Second input vector. |
Definition at line 809 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Returns a new vector with each element being the minimum of the corresponding element in left
and max
.
T | Vector type. |
U | Primitive type for the max value. |
left | Input vector. |
max | Maximum value for each element. |
Definition at line 787 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Mix between two values (same as lerp).
T | Type of the values to mix between. |
U | Type of the mix parameter. |
from | The starting value. |
to | The target value. |
param | The mix parameter (usually between 0 and 1). |
Definition at line 887 of file vec_math.inl.
|
inlinenodiscard |
Definition at line 327 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 328 of file math-common.hpp.
|
constexprnoexcept |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
Normalizes a quaternion.
Definition at line 408 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Normalize the given vector.
T | The vector type. |
vector | The input vector. |
Definition at line 305 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 279 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 236 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 205 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 210 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 262 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 139 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 144 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 226 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 195 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 175 of file vec_math.inl.
|
nodiscardconstexpr |
Multiplies a matrix by a vector.
This function multiplies a matrix with a vector, resulting in a vector of the appropriate type and size.
M | A matrix type satisfying the AnyMat concept. |
V | A vector type satisfying the AnyVec concept. |
left | The matrix to be multiplied. |
right | The vector to multiply the matrix with. |
Definition at line 71 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Quaternion multiplication.
Definition at line 216 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Quaternion-Quaternion multiplication.
Definition at line 376 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Quaternion-Vector multiplication.
Definition at line 381 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Quaternion-scalar multiplication.
Definition at line 196 of file quaternion.inl.
|
nodiscardconstexpr |
Multiplies a matrix by a primitive.
This function performs scalar multiplication on a matrix. It multiplies each element of the matrix by the given primitive.
T | A matrix type satisfying the AnyMat concept. |
U | A primitive type. |
left | The matrix to be multiplied. |
right | The primitive value to multiply the matrix with. |
Definition at line 89 of file mat_math.inl.
|
nodiscardconstexpr |
Multiplies two matrices.
Computes the product of two matrices. Requires that the number of columns in the left-hand side matrix matches the number of rows in the right-hand side matrix.
U | First matrix type |
V | Second matrix type |
lhs | Left-hand side matrix |
rhs | Right-hand side matrix |
Definition at line 33 of file mat_math.inl.
|
nodiscardconstexpr |
Multiplies a matrix by a primitive.
Performs scalar multiplication on a matrix by multiplying each element with a primitive value.
T | A matrix type satisfying the AnyMat concept. |
U | A primitive type. |
left | The primitive value. |
right | The matrix. |
Definition at line 94 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 150 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Scalar-quaternion multiplication.
Definition at line 186 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Definition at line 98 of file vec_math.inl.
|
nodiscardconstexpr |
Multiplies a vector by a matrix.
This function is a specialized implementation of vector-matrix multiplication. The result is a vector with the appropriate type and size.
V | A vector type satisfying the AnyVec concept. |
M | A matrix type satisfying the AnyMat concept. |
left | The vector to be multiplied. |
right | The matrix to multiply the vector with. |
Definition at line 54 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Vector-Quaternion multiplication.
Definition at line 391 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Definition at line 252 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 129 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 88 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 216 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 185 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 165 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Quaternion addition.
Definition at line 206 of file quaternion.inl.
|
nodiscardconstexpr |
Adds two matrices.
Performs element-wise addition of two matrices.
T | A matrix type satisfying the AnyMat concept. |
U | A matrix type satisfying the AnyMat concept. |
left | The first matrix. |
right | The second matrix to be added to the first. |
Definition at line 116 of file mat_math.inl.
|
nodiscardconstexpr |
Adds a matrix to a primitive.
Adds a primitive to each element of the matrix.
T | A matrix type satisfying the AnyMat concept. |
U | A primitive type. |
left | The primitive value. |
right | The matrix. |
Definition at line 105 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 155 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 108 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 242 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 119 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 78 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 221 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 190 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 170 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Quaternion subtraction.
Definition at line 211 of file quaternion.inl.
|
nodiscardconstexpr |
Subtracts a matrix from a primitive.
Subtracts each element of the matrix from a given primitive.
T | A matrix type satisfying the AnyMat concept. |
U | A primitive type. |
left | The matrix. |
right | The primitive value. |
Definition at line 100 of file mat_math.inl.
|
nodiscardconstexpr |
Subtracts two matrices.
Performs element-wise subtraction of two matrices.
T | A matrix type satisfying the AnyMat concept. |
U | A matrix type satisfying the AnyMat concept. |
left | The first matrix. |
right | The second matrix to be subtracted from the first. |
Definition at line 111 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 160 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 113 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 247 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 124 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 83 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 231 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 200 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 180 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Quaternion division.
Definition at line 221 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Quaternion-scalar division.
Definition at line 201 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Scalar-quaternion division.
Definition at line 191 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Definition at line 103 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 257 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 134 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Definition at line 93 of file vec_math.inl.
|
constexpr |
Definition at line 176 of file quaternion.inl.
|
constexpr |
Output stream operator overload for vector objects.
Definition at line 24 of file vec_math.inl.
|
constexpr |
Writes a matrix to an output stream.
Output stream operator overload for const vector objects.
Converts the matrix into a string representation and inserts it into the given output stream.
U | Any matrix type |
os | Output stream |
matrix | Matrix to be written |
Definition at line 20 of file mat_math.inl.
|
constexpr |
Writes a vector of given size to an output stream.
|
nodiscardconstexprnoexcept |
Definition at line 268 of file vec_math.inl.
|
constexpr |
Definition at line 167 of file quaternion.inl.
|
constexpr |
Reads a matrix from an input stream.
Input stream operator overload for vector objects.
Extracts values from the given input stream and fills the matrix accordingly.
U | Any matrix type |
is | Input stream |
matrix | Matrix to be filled with values |
Definition at line 8 of file mat_math.inl.
|
constexpr |
Reads a vector of given size from an input stream.
|
constexpr |
Generates an orthographic projection matrix.
T | A primitive type for the function parameters. |
left | The left clipping plane distance. |
right | The right clipping plane distance. |
bottom | The bottom clipping plane distance. |
top | The top clipping plane distance. |
zNear | The near clipping plane distance. |
zFar | The far clipping plane distance. |
Definition at line 336 of file mat_math.inl.
|
constexpr |
Generates a perspective projection matrix.
T | A primitive type for the function parameters. |
fov_y | The vertical field of view in radians. |
aspect_ratio | The aspect ratio of the viewport. |
z_near | The near clipping plane distance. |
z_far | The far clipping plane distance. |
Definition at line 319 of file mat_math.inl.
|
constexpr |
Generates a perspective projection matrix.
T | A primitive type for the function parameters. |
fov_y | The vertical field of view in radians. |
aspect_ratio | The aspect ratio of the viewport. |
z_near | The near clipping plane distance. |
z_far | The far clipping plane distance. |
Definition at line 319 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Computes the pitch from a quaternion.
Definition at line 256 of file quaternion.inl.
|
inlinenodiscard |
Definition at line 333 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 335 of file math-common.hpp.
|
constexprnoexcept |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
nodiscardconstexprnoexcept |
Creates a quaternion from individual Euler angles.
Definition at line 326 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Creates a quaternion from Euler angles given in a vector.
Definition at line 313 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Creates a quaternion from a 3x3 rotation matrix.
Definition at line 331 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Converts a quaternion to Euler angles.
Definition at line 275 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Function to convert degrees to radians.
Definition at line 209 of file math-common.hpp.
|
constexprnoexcept |
Clamp the value of left
between min
and max
in-place.
T | Type of the value to be clamped. |
U | Type of the boundary values. |
left | The value to be clamped. |
min | The minimum value. |
max | The maximum value. |
Definition at line 695 of file vec_math.inl.
|
constexprnoexcept |
Clamp the value of left
between min
and max
in-place.
T | Type of the value to be clamped. |
U | Type of the boundary values. |
left | The value to be clamped. |
min | The minimum value. |
max | The maximum value. |
Definition at line 719 of file vec_math.inl.
|
constexpr |
Transposes a constant matrix and returns a constant reference to it.
Swaps rows with columns in a constant matrix, returning a constant reference.
T | A matrix type satisfying the AnyMat concept. |
matrix | The matrix to be transposed. |
Definition at line 147 of file mat_math.inl.
|
nodiscardconstexprnoexcept |
Computes the reflection of an incident vector based on a surface's normal.
Given an incident vector and the normal at the point of incidence, this function calculates the direction that a perfectly reflected ray would take.
Vector | A vector type that should satisfy the AnyVec concept, having both size and type members. |
[in] | normal | The unit vector normal to the surface at the point of incidence. |
[in] | incident | The unit vector pointing in the direction of the incoming ray. |
incident
and normal
are unit vectors. If they aren't, the result might not be correct. Definition at line 56 of file math.hpp.
|
nodiscardconstexprnoexcept |
Computes the refraction of a vector given an interface's normal and an index of refraction.
This function calculates the refracted direction of an incident vector at the boundary of two materials with a given index of refraction.
Vector | A vector type that should have a defined size and type member. |
[in] | normal | The unit vector normal to the interface at the point of incidence. |
[in] | incident | The unit vector pointing in the direction of the incoming ray. |
[in] | eta | The relative index of refraction (ratio of indices of refraction). |
Definition at line 77 of file math.hpp.
|
constexprnoexcept |
Modifies left
in-place, setting each element to the maximum of itself and the corresponding element in min
.
T | Type of the vector to modify. |
U | Type of the min vector. |
left | Vector to be modified. |
min | Vector containing minimum values. |
Definition at line 839 of file vec_math.inl.
|
constexprnoexcept |
Modifies left
in-place, setting each element to the maximum of itself and min
.
Modifies left
in-place, setting its value to the maximum of itself and min
.
T | Type of the vector to modify. |
U | Primitive type for the min value. |
left | Vector to be modified. |
min | Minimum value for each element. |
left | Value to be modified. |
min | Minimum value. |
Definition at line 857 of file vec_math.inl.
|
constexprnoexcept |
Modifies left
in-place, setting each element to the minimum of itself and the corresponding element in max
.
T | Type of the vector to modify. |
U | Type of the max vector. |
left | Vector to be modified. |
max | Vector containing maximum values. |
Definition at line 830 of file vec_math.inl.
|
constexprnoexcept |
Modifies left
in-place, setting each element to the minimum of itself and max
.
Modifies left
in-place, setting its value to the minimum of itself and max
.
T | Type of the vector to modify. |
U | Primitive type for the max value. |
left | Vector to be modified. |
max | Maximum value for each element. |
left | Value to be modified. |
max | Maximum value. |
Definition at line 848 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Computes the roll from a quaternion.
Definition at line 268 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Rotates a 4x4 matrix using a quaternion.
Definition at line 397 of file quaternion.inl.
|
nodiscardconstexprnoexcept |
Rotates a 4x4 matrix using a quaternion.
Definition at line 397 of file quaternion.inl.
|
constexpr |
Rotates a matrix by a given angle around a given axis.
T | A matrix type satisfying the AnyMat concept. |
U | A primitive type representing the angle. |
V | A vector type representing the rotation axis. |
matrix | The matrix to be rotated. |
angle | The rotation angle. |
axis | The rotation axis. |
Definition at line 256 of file mat_math.inl.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexpr |
Transposes a matrix and returns a reference to it.
Swaps rows with columns in a matrix, returning a reference.
T | A matrix type satisfying the AnyMat concept. |
matrix | The matrix to be transposed. |
Definition at line 134 of file mat_math.inl.
|
constexpr |
Scales a matrix by a given vector.
T | A matrix type satisfying the AnyMat concept. |
V | A vector type representing the scaling factors. |
matrix | The matrix to be scaled. |
scale | The scaling vector. |
Definition at line 287 of file mat_math.inl.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 223 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 224 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 251 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 252 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 303 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 304 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
nodiscardconstexprnoexcept |
Compute the squared length of the given vector.
T | The vector type. |
vector | The input vector. |
Definition at line 284 of file vec_math.inl.
|
inlinenodiscard |
Definition at line 227 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 228 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
inlinenodiscard |
Definition at line 255 of file math-common.hpp.
|
inlinenodiscard |
Definition at line 256 of file math-common.hpp.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
constexpr |
Translates a matrix by a given vector.
T | A matrix type satisfying the AnyMat concept. |
V | A vector type satisfying the AnyVec concept. |
matrix | The matrix to be translated. |
vec | The translation vector. |
Definition at line 246 of file mat_math.inl.
|
constexpr |
Transposes a matrix.
Swaps rows with columns in a matrix.
T | A matrix type satisfying the AnyMat concept. |
matrix | The matrix to be transposed. |
Definition at line 121 of file mat_math.inl.
|
constexprnoexcept |
|
inlinenodiscardnoexcept |
|
nodiscardconstexprnoexcept |
Compute the unit vector (normalized vector) of the given vector.
T | The vector type. |
vector | The input vector. |
Definition at line 300 of file vec_math.inl.
|
nodiscardconstexprnoexcept |
Computes the yaw from a quaternion.
Definition at line 263 of file quaternion.inl.