4#pragma warning(disable : 4201)
44 template <
size_t a,
size_t b, Primitive T>
61 template <
size_t c,
size_t d, Primitive P>
72 template <
size_t c,
size_t d, Primitive P>
84 constexpr void reset() noexcept;
87 [[nodiscard]] constexpr _detail::rvec<b, T>& operator[](
size_t i);
90 [[nodiscard]] constexpr _detail::rvec<b, T> const& operator[](
size_t i) const;
93 [[nodiscard]] constexpr
rmat<a, b, T> const& operator+() const noexcept;
96 [[nodiscard]] constexpr
mat<a, b, T> operator-() const noexcept;
100 constexpr
rmat<a, b, T>& operator+=(
rmat<a, b, U> const& other);
104 constexpr
rmat<a, b, T>& operator-=(
rmat<a, b, U> const& other);
108 constexpr
rmat<a, c, T>& operator*=(
rmat<b, c, U> const& other);
112 constexpr
rmat<a, b, T>& operator+=(
mat<a, b, U> const& other);
116 constexpr
rmat<a, b, T>& operator-=(
mat<a, b, U> const& other);
120 constexpr
rmat<a, c, T>& operator*=(
mat<b, c, U> const& other);
124 constexpr
rmat<a, b, T>& operator+=(U const value);
128 constexpr
rmat<a, b, T>& operator-=(U const value);
132 constexpr
rmat<a, b, T>& operator*=(U const value);
136 std::array<_detail::primitive_reference_wrapper<T>,
size.x *
size.y>
arr;
140 static_assert(
sizeof(
arr) ==
sizeof(
data));
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.
Internal detail definition of a reference vector with fixed size L and type T
Definition of matrix with dimensions rows x columns and type T
Definition of a reference matrix with dimensions rows x columns and type T
constexpr void reset() noexcept
Resets all elements to zero.
std::array< _detail::primitive_reference_wrapper< T >, size.x *size.y > arr
Linear representation of the matrix.
static constexpr ivec2 size
Defines the size of the matrix.
std::array< _detail::rvec< size.y, T >, size.x > data
2D representation of the matrix.
constexpr rmat()
Default constructor.
constexpr rmat< a, b, T > & operator=(mat< a, b, U > const &mat)
Assigns values from a matrix of the same size.
T type
Alias for the data type of the matrix elements.
Definition of the mathematical vector with fixed size L and type T