4#pragma warning(disable : 4201)
37 template <
size_t a,
size_t b, Primitive T>
52 for (
size_t i = 0; i < a; i++)
54 for (
size_t j = 0; j < b; j++)
56 result.
data[i][j] = i == j ?
static_cast<T
>(1) :
static_cast<T
>(0);
64 constexpr mat() =
default;
72 template <Primitive P>
73 explicit constexpr mat(P p)
requires(a == b);
81 template <
size_t c,
size_t d, Primitive P>
90 template <
size_t c,
size_t d, Primitive P>
97 template <Primitive P>
104 template <Primitive P>
116 template <
typename... U>
117 explicit constexpr mat(U...
data);
122 constexpr void reset() noexcept;
129 [[nodiscard]] constexpr
vec<b, T> &operator[](
size_t i);
135 [[nodiscard]] constexpr
vec<b, T> const &operator[](
size_t i) const;
141 [[nodiscard]] constexpr
mat<a, b, T> const &operator+() const noexcept;
147 [[nodiscard]] constexpr
mat<a, b, T> operator-() const noexcept;
157 constexpr
mat<a, b, T> &operator+=(
mat<a, b, U> const &other);
166 constexpr
mat<a, b, T> &operator-=(
mat<a, b, U> const &other);
176 constexpr
mat<a, c, T> &operator*=(
mat<b, c, U> const &other);
186 constexpr
mat<a, b, T> &operator+=(
rmat<a, b, U> const &other);
195 constexpr
mat<a, b, T> &operator-=(
rmat<a, b, U> const &other);
205 constexpr
mat<a, c, T> &operator*=(
rmat<b, c, U> const &other);
215 constexpr
mat<a, b, T> &operator+=(U const value);
224 constexpr
mat<a, b, T> &operator-=(U const value);
233 constexpr
mat<a, b, T> &operator*=(U const value);
242 template <
size_t c = a,
size_t d = b>
251 static_assert(
sizeof(
arr) ==
sizeof(
data));
259 template <Primitive _>
273 template <
typename A,
typename B,
typename... C>
282 template <Primitive U>
300 template <
typename A,
typename B,
typename... C>
301 constexpr void unpack_data(
size_t offset, A, B, C...);
Concept that ensures a type is either floating point or integral.
Provides matrix definitions tailored for various sizes and primitive types.
Contains mathematical utility functions and classes.
Definition of matrix with dimensions rows x columns and type T
constexpr void unpack_data(size_t offset, V vec)
Unpacks a vector into the matrix data.
static constexpr mat< a, b, T > identity() noexcept
Returns the identity matrix of size a x b.
static constexpr vec< 2, size_t > size
Represents the dimensions of the matrix.
T type
Alias for the primitive data type used in the matrix.
constexpr void unpack_data(size_t offset, U u)
Unpacks a single primitive value into the matrix data.
std::array< T, size.x *size.y > arr
Linear array representation of matrix data.
constexpr rmat< c, d, T > as_rmat() noexcept
Converts the matrix to an rmat type.
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for vector types.
constexpr void reset() noexcept
Resets the matrix to have all zero values.
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for primitive types.
constexpr mat()=default
Default constructor.
std::array< vec< size.y, T >, size.x > data
2D array (rows x columns) representation of matrix data.
Definition of a reference matrix with dimensions rows x columns and type T
Definition of the mathematical vector with fixed size L and type T