6 template <
size_t a,
size_t b, Primitive T>
11 for (
size_t i = 0; i < a; i++)
13 data[i][i] =
static_cast<T
>(p);
16 template <
size_t a,
size_t b, Primitive T>
17 template <
size_t c,
size_t d, Primitive P>
21 for (
size_t i = 0; i < c; i++)
23 for (
size_t j = 0; j < d; j++)
25 data[i][j] =
static_cast<T
>(p.data[i][j]);
29 template <
size_t a,
size_t b, Primitive T>
30 template <
size_t c,
size_t d, Primitive P>
34 for (
size_t i = 0; i < c; i++)
36 for (
size_t j = 0; j < d; j++)
38 data[i][j] =
static_cast<T
>(p.data[i][j]);
42 template <
size_t a,
size_t b, Primitive T>
43 template <Primitive P>
46 for (
size_t i = 0; i < a * b; i++)
48 arr[i] =
static_cast<T
>(p.
arr[i]);
51 template <
size_t a,
size_t b, Primitive T>
52 template <Primitive P>
55 for (
size_t i = 0; i < a * b; i++)
57 arr[i] =
static_cast<T
>(p.
arr[i]);
60 template <
size_t a,
size_t b, Primitive T>
61 template <
typename... U>
64 static_assert(get_parameter_pack_size<U...>() == a * b,
65 "You have provided wrong amount of data");
66 unpack_data(0, data...);
69 template <
size_t a,
size_t b, Primitive T>
72 for (
size_t i = 0; i < size.x; i++)
76 for (
size_t i = 0; i < a && i < b; i++)
82 template <
size_t a,
size_t b, Primitive T>
88 template <
size_t a,
size_t b, Primitive T>
95 template <
size_t a,
size_t b, Primitive T>
101 template <
size_t a,
size_t b, Primitive T>
105 for (
size_t i = 0; i < size.x; i++)
107 return_value.
data[i] = -data[i];
112 template <
size_t a,
size_t b, Primitive T>
113 template <Primitive U>
116 for (
size_t i = 0; i < size.x; i++)
118 data[i] += other.
data[i];
122 template <
size_t a,
size_t b, Primitive T>
123 template <Primitive U>
126 for (
size_t i = 0; i < size.x; i++)
128 data[i] -= other.
data[i];
133 template <
size_t a,
size_t b, Primitive T>
134 template <
size_t c, Primitive U>
137 return (*
this = *
this * other);
140 template <
size_t a,
size_t b, Primitive T>
141 template <Primitive U>
144 for (
size_t i = 0; i < size.x; i++)
146 data[i] += other.
data[i];
150 template <
size_t a,
size_t b, Primitive T>
151 template <Primitive U>
154 for (
size_t i = 0; i < size.x; i++)
156 data[i] -= other.
data[i];
161 template <
size_t a,
size_t b, Primitive T>
162 template <
size_t c, Primitive U>
165 return (*
this = *
this * other);
168 template <
size_t a,
size_t b, Primitive T>
169 template <Primitive U>
172 for (
size_t i = 0; i < size.x; i++)
178 template <
size_t a,
size_t b, Primitive T>
179 template <Primitive U>
182 for (
size_t i = 0; i < size.x; i++)
188 template <
size_t a,
size_t b, Primitive T>
189 template <Primitive U>
192 for (
size_t i = 0; i < size.x; i++)
199 template <
size_t a,
size_t b, Primitive T>
200 template <Primitive _>
207 template <
size_t a,
size_t b, Primitive T>
215 template <
size_t a,
size_t b, Primitive T>
216 template <
typename A,
typename B,
typename... C>
221 return get_parameter_pack_size<A>() + get_parameter_pack_size<B, C...>();
224 template <
size_t a,
size_t b, Primitive T>
225 template <Primitive U>
229 arr[offset] =
static_cast<T
>(u);
232 template <
size_t a,
size_t b, Primitive T>
237 for (
size_t i = 0; i < V::size; i++)
239 arr[offset + i] =
static_cast<T
>(
vec[i]);
243 template <
size_t a,
size_t b, Primitive T>
244 template <
typename A,
typename B,
typename... C>
249 unpack_data(offset, first);
252 offset += get_parameter_pack_size<A>();
253 unpack_data(offset, second, rest...);
Provides the definition of a generic NxN matrix for mathematical operations.
Contains mathematical utility functions and classes.
Definition of matrix with dimensions rows x columns and type T
constexpr mat< a, b, T > & operator-=(mat< a, b, U > const &other)
Subtracts another matrix from the current matrix.
constexpr mat< a, b, T > & operator+=(mat< a, b, U > const &other)
Adds another matrix to the current 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 mat< a, b, T > operator-() const noexcept
Unary minus operator.
constexpr mat< a, b, T > const & operator+() const noexcept
Unary plus operator.
constexpr void reset() noexcept
Resets the matrix to have all zero values.
constexpr vec< b, T > & operator[](size_t i)
Accesses a row of the matrix.
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.
constexpr mat< a, c, T > & operator*=(mat< b, c, U > const &other)
Multiplies the current matrix with another matrix.
Definition of a reference matrix with dimensions rows x columns and type T
std::array< _detail::primitive_reference_wrapper< T >, size.x *size.y > arr
Linear representation of the matrix.
std::array< _detail::rvec< size.y, T >, size.x > data
2D representation of the matrix.
Definition of the mathematical vector with fixed size L and type T