27 constexpr std::istream &
operator>>(std::istream &is, U &matrix);
38 constexpr std::ostream &
operator<<(std::ostream &os, U
const &matrix);
49 template <AnyMat U, AnyMat V>
50 [[nodiscard]]
constexpr auto operator*(U
const &lhs, V
const &rhs)
requires (U::size.x == V::size.y);
61 template <AnyVec V, AnyMat M>
62 [[nodiscard]]
constexpr auto operator*(V
const &left, M
const &right)
requires (V::size == M::size.y);
73 template <AnyMat M, AnyVec V>
74 [[nodiscard]]
constexpr auto operator*(M
const &left, V
const &right)
requires (M::size.x == V::size);
85 template <AnyMat T, Primitive U>
86 [[nodiscard]]
constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
operator*(T
const &left, U
const right);
97 template <AnyMat T, Primitive U>
98 [[nodiscard]]
constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
operator*(U
const left, T
const &right);
109 template <AnyMat T, Primitive U>
110 [[nodiscard]]
constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
operator-(T
const &left, U
const right);
121 template <AnyMat T, Primitive U>
122 [[nodiscard]]
constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
operator+(U
const left, T
const &right);
133 template <AnyMat T, AnyMat U>
134 [[nodiscard]]
constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
operator-(T
const left, U
const &right)
requires(T::size.x == U::size.x && T::size.y == U::size.y);
145 template <AnyMat T, AnyMat U>
146 [[nodiscard]]
constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
operator+(T
const &left, U
const &right)
requires(T::size.x == U::size.x && T::size.y == U::size.y);
156 constexpr mat<T::size.y, T::size.x, std::remove_const_t<typename T::type>>
transpose(T
const &matrix);
166 constexpr rmat<T::size.y, T::size.x,
typename T::type>
rtranspose(T &matrix);
176 constexpr rmat<T::size.y, T::size.x,
const typename T::type>
rctranspose(T
const &matrix);
186 constexpr typename T::type
det(T
const &matrix)
requires(T::size.x == T::size.y);
195 constexpr typename T::type
determinant(T
const &matrix)
requires(T::size.x == T::size.y);
204 constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
adj(T
const &m)
requires(T::size.x == T::size.y);
209 constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
adjugate(T
const &m)
requires(T::size.x == T::size.y);
218 constexpr mat<T::size.x, T::size.y, std::remove_const_t<typename T::type>>
inverse(T
const &matrix)
requires(T::size.x == T::size.y);
228 template <AnyMat T, AnyVec V>
229 constexpr mat<4, 4, std::remove_const_t<typename T::type>>
translate(T
const &matrix, V
const &vec)
requires(T::size.x == T::size.y && T::size.x == 4 && V::size == 3);
241 template <AnyMat T, Primitive U, AnyVec V>
242 constexpr mat<4, 4, std::remove_const_t<typename T::type>>
rotate(T
const &matrix, U
angle, V
const &axis)
requires(T::size.x == T::size.y && T::size.x == 4 && V::size == 3);
252 template <AnyMat T, AnyVec V>
253 constexpr mat<4, 4, std::remove_const_t<typename T::type>>
scale(T
const &matrix, V
const &
scale)
requires(T::size.x == T::size.y && T::size.x == 4 && V::size == 3);
263 template <AnyVec Position>
264 constexpr mat<4, 4, std::remove_const_t<typename Position::type>>
look_at(Position
const &eye, Position
const ¢er, Position
const &up)
requires(Position::size == 3);
274 template <Primitive T>
275 constexpr mat<4, 4, T>
perspective(T fov_y, T aspect_ratio, T z_near, T z_far);
288 template <Primitive T>
289 constexpr mat<4, 4, T>
ortho(T left, T right, T bottom, T top, T zNear, T zFar);
297 template <Primitive T>
306 template <Primitive T>
315 template <Primitive T>
324 template <Primitive T>
Provides matrix definitions tailored for various sizes and primitive types.
Contains mathematical utility functions and classes.
constexpr T::type det(T const &matrix)
Calculates the determinant of a square matrix.
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.
constexpr mat< 4, 4, T > perspective(T fov_y, T aspect_ratio, T z_near, T z_far)
Generates a perspective projection matrix.
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.
constexpr rmat< T::size.y, T::size.x, typename T::type > rtranspose(T &matrix)
Transposes a matrix and returns a reference to it.
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.
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.
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.
constexpr T angle(qua< T > const &quaternion) noexcept
Computes the angle (or magnitude) of a quaternion.
constexpr mat< 4, 4, T > ortho(T left, T right, T bottom, T top, T zNear, T zFar)
Generates an orthographic projection matrix.
constexpr auto operator*(U const &lhs, V const &rhs)
Multiplies two matrices.
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.
constexpr T::type determinant(T const &matrix)
Calculates the determinant of a square matrix.
constexpr std::istream & operator>>(std::istream &is, U &matrix)
Reads a matrix from an input stream.
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.
constexpr std::ostream & operator<<(std::ostream &os, U const &matrix)
Writes a matrix to an output stream.
constexpr mat< T::size.y, T::size.x, std::remove_const_t< typename T::type > > transpose(T const &matrix)
Transposes a matrix.
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.
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.
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.
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.
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.