#pragma once #include "concepts.hpp" #include "../container/iterator.hpp" namespace gz { // Forward declarations template class mat2x2; template class mat2x4; template class mat3x2; template class mat3x3; template class mat3x4; template class rvec3; template class vec2; template class vec3; /** * @brief Class containing 6 numbers */ template class mat2x3 { public: // Constructors /// Default constructor constexpr mat2x3() : x1_1(0), x1_2(0), x1_3(0), x2_1(0), x2_2(0), x2_3(0) {} /// Create from scalar, all components will have value n template constexpr mat2x3(const N n) : x1_1(static_cast(n)), x1_2(static_cast(n)), x1_3(static_cast(n)), x2_1(static_cast(n)), x2_2(static_cast(n)), x2_3(static_cast(n)) {} /// Create from scalars template constexpr mat2x3(const N0_0 x1_1, const N0_1 x1_2, const N0_2 x1_3, const N1_0 x2_1, const N1_1 x2_2, const N1_2 x2_3) : x1_1(static_cast(x1_1)), x1_2(static_cast(x1_2)), x1_3(static_cast(x1_3)), x2_1(static_cast(x2_1)), x2_2(static_cast(x2_2)), x2_3(static_cast(x2_3)) {} /// Create from row vectors template constexpr mat2x3(const V0& v0, const V1& v1) : x1_1(static_cast(v0.x)), x1_2(static_cast(v0.y)), x1_3(static_cast(v0.z)), x2_1(static_cast(v1.x)), x2_2(static_cast(v1.y)), x2_3(static_cast(v1.z)) {} /// Create from column vectors template constexpr mat2x3(const V0& v0, const V1& v1, const V2& v2) : x1_1(static_cast(v0.x)), x1_2(static_cast(v1.x)), x1_3(static_cast(v2.x)), x2_1(static_cast(v0.y)), x2_2(static_cast(v1.y)), x2_3(static_cast(v2.y)) {} // Values T x1_1; T x1_2; T x1_3; T x2_1; T x2_2; T x2_3; // Assignment /// Component-wise assignment template constexpr void operator=(const mat2x3& other); /// Assignment from scalar template constexpr void operator=(const N& other); // Arithmetic // Vectorial /// Component-wise + template constexpr mat2x3 operator+(const M& other) const; /// Component-wise - template constexpr mat2x3 operator-(const M& other) const; /// Component-wise % template constexpr mat2x3 operator%(const M& other) const; /// Component-wise * template constexpr mat2x3 compWiseMult(const M& other) const; /// Component-wise / template constexpr mat2x3 compWiseDiv(const M& other) const; /// Component-wise assignment += template constexpr void operator+=(const M& other); /// Component-wise assignment -= template constexpr void operator-=(const M& other); /// Component-wise assignment %= template constexpr void operator%=(const M& other); /// Component-wise assignment *= template constexpr void compWiseAssMult(const M& other); /// Component-wise assignment /= template constexpr void compWiseAssDiv(const M& other); // Scalar /// Component-wise + with scalar template constexpr mat2x3 operator+(const N& other) const; /// Component-wise - with scalar template constexpr mat2x3 operator-(const N& other) const; /// Component-wise % with scalar template constexpr mat2x3 operator%(const N& other) const; /// Component-wise * with scalar template constexpr mat2x3 compWiseMult(const N& other) const; /// Component-wise / with scalar template constexpr mat2x3 compWiseDiv(const N& other) const; /// Component-wise assignment += from scalar template constexpr void operator+=(const N& other); /// Component-wise assignment -= from scalar template constexpr void operator-=(const N& other); /// Component-wise assignment %= from scalar template constexpr void operator%=(const N& other); /// Component-wise assignment *= from scalar template constexpr void compWiseAssMult(const N& other); /// Component-wise assignment /= from scalar template constexpr void compWiseAssDiv(const N& other); // Matrix Multiplication /// Matrix multiplication with vec3 -> vec2 template constexpr vec2 operator*(const C& other) const; /// Matrix multiplication with mat3x2 -> mat2x2 template constexpr mat2x2 operator*(const M& other) const; /// Matrix multiplication with mat3x3 -> mat2x3 template constexpr mat2x3 operator*(const M& other) const; /// Matrix multiplication with mat3x4 -> mat2x4 template constexpr mat2x4 operator*(const M& other) const; // Comparison // Vectorial /// Component-wise comparison == (and) template constexpr bool operator==(const M& other) const; /// Component-wise comparison < (and) template constexpr bool operator<(const M& other) const; /// Component-wise comparison > (and) template constexpr bool operator>(const M& other) const; /// Component-wise comparison != (and) template constexpr bool operator!=(const M& other) const; /// Component-wise comparison <= (and) template constexpr bool operator<=(const M& other) const; /// Component-wise comparison >= (and) template constexpr bool operator>=(const M& other) const; // Scalar /// Component-wise comparison == (and) template constexpr bool operator==(const N& other) const; /// Component-wise comparison < (and) template constexpr bool operator<(const N& other) const; /// Component-wise comparison > (and) template constexpr bool operator>(const N& other) const; /// Component-wise comparison != (and) template constexpr bool operator!=(const N& other) const; /// Component-wise comparison <= (and) template constexpr bool operator<=(const N& other) const; /// Component-wise comparison >= (and) template constexpr bool operator>=(const N& other) const; // Functional /// Returns the absolute value of the vector (sqrt of scalar product with itself) constexpr inline float abs() const; /// Returns the min of the components constexpr inline T min() const; /// Returns the max of the components constexpr inline T max() const; /// Scalar product (x1 * other.x1 + x2 * other.x2 ...) template constexpr inline T dot(const mat2x3& other) const; // Utility /// Get the ith element. i starts at 0 constexpr T operator[](std::size_t i) const; /// Get the element at row and col. row and col start at 0 constexpr T at(std::size_t row, std::size_t col) const; /// Get the ith row as column vector. i starts at 0 constexpr rvec3 row(std::size_t i) const; /// Get the ith column as row vector. i starts at 0 constexpr vec2 column(std::size_t i) const; /// Return an Iterator to the first element constexpr Iterator cbegin() const; /// Return an Iterator past the last element constexpr Iterator cend() const; /// Return an Iterator to the first element constexpr Iterator begin() const; /// Return an Iterator past the last element constexpr Iterator end() const; }; // mat2x3 using mat2x3f = mat2x3; using mat2x3d = mat2x3; using mat2x3i = mat2x3; using mat2x3u = mat2x3; static_assert(Mat2x3>, "mat2x3 does not satisfy the concept Mat2x3"); } // namespace gz