mal-math
C++20 mathematics library.
|
Definition of matrix with dimensions rows
x columns
and type T
More...
#include "matnxn.hpp"
Public Types | |
using | type = T |
Alias for the primitive data type used in the matrix. | |
Public Member Functions | |
constexpr | mat ()=default |
Default constructor. | |
template<Primitive P> requires (a == b) | |
constexpr | mat (P p) |
Constructor that initializes a square matrix with a single value. | |
template<size_t c, size_t d, Primitive P> requires (a >= c && b >= d) | |
constexpr | mat (mat< c, d, P > p) |
Constructor that initializes the matrix from another matrix. | |
template<size_t c, size_t d, Primitive P> requires (a >= c && b >= d) | |
constexpr | mat (rmat< c, d, P > p) |
Constructor that initializes the matrix from another matrix. | |
template<Primitive P> | |
constexpr | mat (mat< a, b, P > p) |
Constructor that initializes the matrix from another matrix with the same dimensions. | |
template<Primitive P> | |
constexpr | mat (rmat< a, b, P > p) |
Constructor that initializes the matrix from another matrix with the same dimensions. | |
template<typename... U> | |
constexpr | mat (U... data) |
Constructor that initializes the matrix from any data (such as floats, vectors, integers etc.). It doesn't care if primitive type is the same, it can eat basically anything. For example: | |
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. | |
constexpr vec< b, T > const & | operator[] (size_t i) const |
Accesses a row of the matrix (const version). | |
constexpr mat< a, b, T > const & | operator+ () const noexcept |
Unary plus operator. | |
constexpr mat< a, b, T > | operator- () const noexcept |
Unary minus operator. | |
template<Primitive U> | |
constexpr mat< a, b, T > & | operator+= (mat< a, b, U > const &other) |
Adds another matrix to the current matrix. | |
template<Primitive U> | |
constexpr mat< a, b, T > & | operator-= (mat< a, b, U > const &other) |
Subtracts another matrix from the current matrix. | |
template<size_t c, Primitive U> | |
constexpr mat< a, c, T > & | operator*= (mat< b, c, U > const &other) |
Multiplies the current matrix with another matrix. | |
template<Primitive U> | |
constexpr mat< a, b, T > & | operator+= (rmat< a, b, U > const &other) |
Adds another row-major matrix to the current matrix. | |
template<Primitive U> | |
constexpr mat< a, b, T > & | operator-= (rmat< a, b, U > const &other) |
Subtracts another row-major matrix from the current matrix. | |
template<size_t c, Primitive U> | |
constexpr mat< a, c, T > & | operator*= (rmat< b, c, U > const &other) |
Multiplies the current matrix with another row-major matrix. | |
template<Primitive U> | |
constexpr mat< a, b, T > & | operator+= (U const value) |
Adds a scalar value to each element of the current matrix. | |
template<Primitive U> | |
constexpr mat< a, b, T > & | operator-= (U const value) |
Subtracts a scalar value from each element of the current matrix. | |
template<Primitive U> | |
constexpr mat< a, b, T > & | operator*= (U const value) |
Multiplies each element of the current matrix by a scalar value. | |
template<size_t c = a, size_t d = b> | |
constexpr rmat< c, d, T > | as_rmat () noexcept |
Converts the matrix to an rmat type. | |
Static Public Member Functions | |
static constexpr mat< a, b, T > | identity () noexcept |
Returns the identity matrix of size a x b. | |
Public Attributes | ||
union { | ||
std::array< T, size.x *size.y > arr | ||
Linear array representation of matrix data. More... | ||
std::array< vec< size.y, T >, size.x > data | ||
2D array (rows x columns) representation of matrix data. More... | ||
}; | ||
Union containing two ways to represent matrix data. | ||
Static Public Attributes | |
static constexpr vec< 2, size_t > | size { a, b } |
Represents the dimensions of the matrix. | |
Private Member Functions | |
template<Primitive U> | |
constexpr void | unpack_data (size_t offset, U u) |
Unpacks a single primitive value into the matrix data. | |
template<class V > | |
constexpr void | unpack_data (size_t offset, V vec) |
Unpacks a vector into the matrix data. | |
template<typename A , typename B , typename... C> | |
constexpr void | unpack_data (size_t offset, A, B, C...) |
Recursively unpacks multiple values into the matrix data. | |
Static Private Member Functions | |
template<Primitive _> | |
static constexpr size_t | get_parameter_pack_size () |
Determines the size of a parameter pack for primitive types. | |
template<class V > | |
static constexpr size_t | get_parameter_pack_size () |
Determines the size of a parameter pack for vector types. | |
template<typename A , typename B , typename... C> | |
static constexpr size_t | get_parameter_pack_size () |
Determines the size of a parameter pack for a mixed set of types. | |
Definition of matrix with dimensions rows
x columns
and type T
Represents a matrix of dimensions a x b.
a | Number of rows of the matrix. |
b | Number of columns of the matrix. |
T | Data type of the matrix elements (must be a primitive type). |
Definition at line 38 of file matnxn.hpp.
using mal_math::mat< a, b, T >::type = T |
Alias for the primitive data type used in the matrix.
Definition at line 41 of file matnxn.hpp.
|
constexprdefault |
Default constructor.
|
explicitconstexpr |
Constructor that initializes a square matrix with a single value.
P | Primitive type for the initialization value. |
p | The value to initialize the matrix with. |
Definition at line 8 of file matnxn.inl.
|
explicitconstexpr |
Constructor that initializes the matrix from another matrix.
c | Number of rows of the source matrix. |
d | Number of columns of the source matrix. |
P | Primitive type of the source matrix. |
p | Source matrix to copy from. |
Definition at line 18 of file matnxn.inl.
|
explicitconstexpr |
Constructor that initializes the matrix from another matrix.
c | Number of rows of the source matrix. |
d | Number of columns of the source matrix. |
P | Primitive type of the source matrix. |
p | Source matrix to copy from. |
Definition at line 31 of file matnxn.inl.
|
explicitconstexpr |
Constructor that initializes the matrix from another matrix with the same dimensions.
p | Source matrix to copy from. |
Definition at line 44 of file matnxn.inl.
|
explicitconstexpr |
Constructor that initializes the matrix from another matrix with the same dimensions.
p | Source matrix to copy from. |
Definition at line 53 of file matnxn.inl.
|
explicitconstexpr |
Constructor that initializes the matrix from any data (such as floats, vectors, integers etc.). It doesn't care if primitive type is the same, it can eat basically anything. For example:
Definition at line 62 of file matnxn.inl.
|
inlineconstexprnoexcept |
Converts the matrix to an rmat type.
c | Number of rows for the rmat (default is a). |
d | Number of columns for the rmat (default is b). |
Definition at line 243 of file matnxn.hpp.
|
staticconstexprprivate |
Determines the size of a parameter pack for primitive types.
Definition at line 201 of file matnxn.inl.
|
staticconstexprprivate |
Determines the size of a parameter pack for vector types.
|
staticconstexprprivate |
Determines the size of a parameter pack for a mixed set of types.
Definition at line 217 of file matnxn.inl.
|
inlinestaticconstexprnoexcept |
Returns the identity matrix of size a x b.
Definition at line 49 of file matnxn.hpp.
|
constexpr |
Multiplies the current matrix with another matrix.
c | Number of columns in the resulting matrix. |
U | Type of the elements in the other matrix. |
other | Matrix to multiply with the current matrix. |
Definition at line 135 of file matnxn.inl.
|
constexpr |
Multiplies the current matrix with another row-major matrix.
c | Number of columns in the resulting matrix. |
U | Type of the elements in the other row-major matrix. |
other | Row-major matrix to multiply with the current matrix. |
Definition at line 163 of file matnxn.inl.
|
constexpr |
Multiplies each element of the current matrix by a scalar value.
U | Type of the scalar value. |
value | Scalar value to multiply each element with. |
Definition at line 190 of file matnxn.inl.
|
nodiscardconstexprnoexcept |
Unary plus operator.
Definition at line 96 of file matnxn.inl.
|
constexpr |
Adds another matrix to the current matrix.
U | Type of the elements in the other matrix. |
other | Matrix to add to the current matrix. |
Definition at line 114 of file matnxn.inl.
|
constexpr |
Adds another row-major matrix to the current matrix.
U | Type of the elements in the other row-major matrix. |
other | Row-major matrix to add to the current matrix. |
Definition at line 142 of file matnxn.inl.
|
constexpr |
Adds a scalar value to each element of the current matrix.
U | Type of the scalar value. |
value | Scalar value to add to each element. |
Definition at line 170 of file matnxn.inl.
|
nodiscardconstexprnoexcept |
Unary minus operator.
Definition at line 102 of file matnxn.inl.
|
constexpr |
Subtracts another matrix from the current matrix.
U | Type of the elements in the other matrix. |
other | Matrix to subtract from the current matrix. |
Definition at line 124 of file matnxn.inl.
|
constexpr |
Subtracts another row-major matrix from the current matrix.
U | Type of the elements in the other row-major matrix. |
other | Row-major matrix to subtract from the current matrix. |
Definition at line 152 of file matnxn.inl.
|
constexpr |
Subtracts a scalar value from each element of the current matrix.
U | Type of the scalar value. |
value | Scalar value to subtract from each element. |
Definition at line 180 of file matnxn.inl.
|
nodiscardconstexpr |
Accesses a row of the matrix.
i | Index of the row. |
Definition at line 83 of file matnxn.inl.
|
nodiscardconstexpr |
Accesses a row of the matrix (const version).
i | Index of the row. |
Definition at line 89 of file matnxn.inl.
|
constexprnoexcept |
Resets the matrix to have all zero values.
Definition at line 70 of file matnxn.inl.
|
constexprprivate |
Recursively unpacks multiple values into the matrix data.
offset | The position to start unpacking in the matrix data. |
first | The first value to unpack. |
second | The second value to unpack. |
rest | The remaining values to unpack. |
Definition at line 245 of file matnxn.inl.
|
constexprprivate |
Unpacks a single primitive value into the matrix data.
offset | The position to start unpacking in the matrix data. |
u | The primitive value to unpack. |
Definition at line 226 of file matnxn.inl.
|
constexprprivate |
Unpacks a vector into the matrix data.
offset | The position to start unpacking in the matrix data. |
vec | The vector to unpack. |
union { ... } mal_math::mat< a, b, T > |
Union containing two ways to represent matrix data.
std::array<T, size.x *size.y> mal_math::mat< a, b, T >::arr |
Linear array representation of matrix data.
Definition at line 248 of file matnxn.hpp.
std::array<vec<size.y, T>, size.x> mal_math::mat< a, b, T >::data |
2D array (rows x columns) representation of matrix data.
Definition at line 249 of file matnxn.hpp.
|
staticconstexpr |
Represents the dimensions of the matrix.
Definition at line 43 of file matnxn.hpp.