mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
matnxn.hpp
Go to the documentation of this file.
1#pragma once
2#include "mat.hpp"
3#pragma warning(push)
4#pragma warning(disable : 4201)
27namespace mal_math
28{
37 template <size_t a, size_t b, Primitive T>
38 struct mat
39 {
41 using type = T;
43 static constexpr vec<2, size_t> size{ a, b };
49 static constexpr mat<a, b, T> identity() noexcept
50 {
51 mat<a, b, T> result;
52 for (size_t i = 0; i < a; i++)
53 {
54 for (size_t j = 0; j < b; j++)
55 {
56 result.data[i][j] = i == j ? static_cast<T>(1) : static_cast<T>(0);
57 }
58 }
59 return result;
60 }
61
62
64 constexpr mat() = default;
65
72 template <Primitive P>
73 explicit constexpr mat(P p) requires(a == b);
81 template <size_t c, size_t d, Primitive P>
82 explicit constexpr mat(mat<c, d, P> p) requires(a >= c && b >= d);
90 template <size_t c, size_t d, Primitive P>
91 explicit constexpr mat(rmat<c, d, P> p) requires(a >= c && b >= d);
97 template <Primitive P>
98 explicit constexpr mat(mat<a, b, P> p);
104 template <Primitive P>
105 explicit constexpr mat(rmat<a, b, P> p);
116 template <typename... U>
117 explicit constexpr mat(U... data);
118
122 constexpr void reset() noexcept;
123
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;
148
156 template <Primitive U>
157 constexpr mat<a, b, T> &operator+=(mat<a, b, U> const &other);
165 template <Primitive U>
166 constexpr mat<a, b, T> &operator-=(mat<a, b, U> const &other);
175 template <size_t c, Primitive U>
176 constexpr mat<a, c, T> &operator*=(mat<b, c, U> const &other);
177
185 template <Primitive U>
186 constexpr mat<a, b, T> &operator+=(rmat<a, b, U> const &other);
194 template <Primitive U>
195 constexpr mat<a, b, T> &operator-=(rmat<a, b, U> const &other);
204 template <size_t c, Primitive U>
205 constexpr mat<a, c, T> &operator*=(rmat<b, c, U> const &other);
206
214 template <Primitive U>
215 constexpr mat<a, b, T> &operator+=(U const value);
223 template <Primitive U>
224 constexpr mat<a, b, T> &operator-=(U const value);
232 template <Primitive U>
233 constexpr mat<a, b, T> &operator*=(U const value);
234
242 template <size_t c = a, size_t d = b>
243 constexpr rmat<c, d, T> as_rmat() noexcept { return rmat<c, d, T>{*this}; }
244
246 union
247 {
248 std::array<T, size.x *size.y> arr;
249 std::array<vec<size.y, T>, size.x> data;
250 };
251 static_assert(sizeof(arr) == sizeof(data));
252
253 private:
259 template <Primitive _>
260 static constexpr size_t get_parameter_pack_size();
266 template <class V>
267 static constexpr size_t get_parameter_pack_size();
273 template <typename A, typename B, typename... C>
274 static constexpr size_t get_parameter_pack_size();
275
282 template <Primitive U>
283 constexpr void unpack_data(size_t offset, U u);
290 template <class V>
291 constexpr void unpack_data(size_t offset, V vec);
300 template <typename A, typename B, typename... C>
301 constexpr void unpack_data(size_t offset, A, B, C...);
302 };
303} // namespace mal_math
304#pragma warning(pop)
305#include "matnxn.inl"
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
Definition matnxn.hpp:39
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.
Definition matnxn.hpp:49
static constexpr vec< 2, size_t > size
Represents the dimensions of the matrix.
Definition matnxn.hpp:43
T type
Alias for the primitive data type used in the matrix.
Definition matnxn.hpp:41
constexpr void unpack_data(size_t offset, U u)
Unpacks a single primitive value into the matrix data.
Definition matnxn.inl:226
std::array< T, size.x *size.y > arr
Linear array representation of matrix data.
Definition matnxn.hpp:248
constexpr rmat< c, d, T > as_rmat() noexcept
Converts the matrix to an rmat type.
Definition matnxn.hpp:243
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.
Definition matnxn.inl:70
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for primitive types.
Definition matnxn.inl:201
constexpr mat()=default
Default constructor.
std::array< vec< size.y, T >, size.x > data
2D array (rows x columns) representation of matrix data.
Definition matnxn.hpp:249
Definition of a reference matrix with dimensions rows x columns and type T
Definition rmatnxn.hpp:45
Definition of the mathematical vector with fixed size L and type T
Definition vecn.hpp:22