/// @ref core /// @file glm/detail/type_mat2x2.inl #include "func_matrix.hpp" namespace glm { // -- Constructors -- # if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT) template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2() { # ifndef GLM_FORCE_NO_CTOR_INIT this->value[0] = col_type(1, 0); this->value[1] = col_type(0, 1); # endif } # endif # if !GLM_HAS_DEFAULTED_FUNCTIONS template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat2x2 const & m) { this->value[0] = m.value[0]; this->value[1] = m.value[1]; } # endif//!GLM_HAS_DEFAULTED_FUNCTIONS template template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat2x2 const & m) { this->value[0] = m.value[0]; this->value[1] = m.value[1]; } template GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tmat2x2::tmat2x2(ctor) {} template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(T scalar) { this->value[0] = col_type(scalar, 0); this->value[1] = col_type(0, scalar); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2 ( T const & x0, T const & y0, T const & x1, T const & y1 ) { this->value[0] = col_type(x0, y0); this->value[1] = col_type(x1, y1); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(col_type const & v0, col_type const & v1) { this->value[0] = v0; this->value[1] = v1; } // -- Conversion constructors -- template template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2 ( X1 const & x1, Y1 const & y1, X2 const & x2, Y2 const & y2 ) { this->value[0] = col_type(static_cast(x1), value_type(y1)); this->value[1] = col_type(static_cast(x2), value_type(y2)); } template template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tvec2 const & v1, tvec2 const & v2) { this->value[0] = col_type(v1); this->value[1] = col_type(v2); } // -- mat2x2 matrix conversions -- template template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat2x2 const & m) { this->value[0] = col_type(m[0]); this->value[1] = col_type(m[1]); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat3x3 const & m) { this->value[0] = col_type(m[0]); this->value[1] = col_type(m[1]); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat4x4 const & m) { this->value[0] = col_type(m[0]); this->value[1] = col_type(m[1]); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat2x3 const & m) { this->value[0] = col_type(m[0]); this->value[1] = col_type(m[1]); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat3x2 const & m) { this->value[0] = m[0]; this->value[1] = m[1]; } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat2x4 const & m) { this->value[0] = col_type(m[0]); this->value[1] = col_type(m[1]); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat4x2 const & m) { this->value[0] = m[0]; this->value[1] = m[1]; } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat3x4 const & m) { this->value[0] = col_type(m[0]); this->value[1] = col_type(m[1]); } template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2(tmat4x3 const & m) { this->value[0] = col_type(m[0]); this->value[1] = col_type(m[1]); } // -- Accesses -- template GLM_FUNC_QUALIFIER typename tmat2x2::col_type & tmat2x2::operator[](typename tmat2x2::length_type i) { assert(i < this->length()); return this->value[i]; } template GLM_FUNC_QUALIFIER typename tmat2x2::col_type const & tmat2x2::operator[](typename tmat2x2::length_type i) const { assert(i < this->length()); return this->value[i]; } // -- Unary updatable operators -- # if !GLM_HAS_DEFAULTED_FUNCTIONS template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator=(tmat2x2 const & m) { this->value[0] = m[0]; this->value[1] = m[1]; return *this; } # endif//!GLM_HAS_DEFAULTED_FUNCTIONS template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator=(tmat2x2 const & m) { this->value[0] = m[0]; this->value[1] = m[1]; return *this; } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator+=(U scalar) { this->value[0] += scalar; this->value[1] += scalar; return *this; } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator+=(tmat2x2 const & m) { this->value[0] += m[0]; this->value[1] += m[1]; return *this; } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator-=(U scalar) { this->value[0] -= scalar; this->value[1] -= scalar; return *this; } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator-=(tmat2x2 const & m) { this->value[0] -= m[0]; this->value[1] -= m[1]; return *this; } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator*=(U scalar) { this->value[0] *= scalar; this->value[1] *= scalar; return *this; } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator*=(tmat2x2 const & m) { return (*this = *this * m); } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator/=(U scalar) { this->value[0] /= scalar; this->value[1] /= scalar; return *this; } template template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator/=(tmat2x2 const & m) { return *this *= inverse(m); } // -- Increment and decrement operators -- template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator++() { ++this->value[0]; ++this->value[1]; return *this; } template GLM_FUNC_QUALIFIER tmat2x2& tmat2x2::operator--() { --this->value[0]; --this->value[1]; return *this; } template GLM_FUNC_QUALIFIER tmat2x2 tmat2x2::operator++(int) { tmat2x2 Result(*this); ++*this; return Result; } template GLM_FUNC_QUALIFIER tmat2x2 tmat2x2::operator--(int) { tmat2x2 Result(*this); --*this; return Result; } // -- Unary arithmetic operators -- template GLM_FUNC_QUALIFIER tmat2x2 operator+(tmat2x2 const & m) { return m; } template GLM_FUNC_QUALIFIER tmat2x2 operator-(tmat2x2 const & m) { return tmat2x2( -m[0], -m[1]); } // -- Binary arithmetic operators -- template GLM_FUNC_QUALIFIER tmat2x2 operator+(tmat2x2 const & m, T scalar) { return tmat2x2( m[0] + scalar, m[1] + scalar); } template GLM_FUNC_QUALIFIER tmat2x2 operator+(T scalar, tmat2x2 const & m) { return tmat2x2( m[0] + scalar, m[1] + scalar); } template GLM_FUNC_QUALIFIER tmat2x2 operator+(tmat2x2 const & m1, tmat2x2 const & m2) { return tmat2x2( m1[0] + m2[0], m1[1] + m2[1]); } template GLM_FUNC_QUALIFIER tmat2x2 operator-(tmat2x2 const & m, T scalar) { return tmat2x2( m[0] - scalar, m[1] - scalar); } template GLM_FUNC_QUALIFIER tmat2x2 operator-(T scalar, tmat2x2 const & m) { return tmat2x2( scalar - m[0], scalar - m[1]); } template GLM_FUNC_QUALIFIER tmat2x2 operator-(tmat2x2 const & m1, tmat2x2 const & m2) { return tmat2x2( m1[0] - m2[0], m1[1] - m2[1]); } template GLM_FUNC_QUALIFIER tmat2x2 operator*(tmat2x2 const & m, T scalar) { return tmat2x2( m[0] * scalar, m[1] * scalar); } template GLM_FUNC_QUALIFIER tmat2x2 operator*(T scalar, tmat2x2 const & m) { return tmat2x2( m[0] * scalar, m[1] * scalar); } template GLM_FUNC_QUALIFIER typename tmat2x2::col_type operator* ( tmat2x2 const & m, typename tmat2x2::row_type const & v ) { return tvec2( m[0][0] * v.x + m[1][0] * v.y, m[0][1] * v.x + m[1][1] * v.y); } template GLM_FUNC_QUALIFIER typename tmat2x2::row_type operator* ( typename tmat2x2::col_type const & v, tmat2x2 const & m ) { return tvec2( v.x * m[0][0] + v.y * m[0][1], v.x * m[1][0] + v.y * m[1][1]); } template GLM_FUNC_QUALIFIER tmat2x2 operator*(tmat2x2 const & m1, tmat2x2 const & m2) { return tmat2x2( m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1], m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1], m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1], m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1]); } template GLM_FUNC_QUALIFIER tmat3x2 operator*(tmat2x2 const & m1, tmat3x2 const & m2) { return tmat3x2( m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1], m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1], m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1], m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1], m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1], m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1]); } template GLM_FUNC_QUALIFIER tmat4x2 operator*(tmat2x2 const & m1, tmat4x2 const & m2) { return tmat4x2( m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1], m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1], m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1], m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1], m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1], m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1], m1[0][0] * m2[3][0] + m1[1][0] * m2[3][1], m1[0][1] * m2[3][0] + m1[1][1] * m2[3][1]); } template GLM_FUNC_QUALIFIER tmat2x2 operator/(tmat2x2 const & m, T scalar) { return tmat2x2( m[0] / scalar, m[1] / scalar); } template GLM_FUNC_QUALIFIER tmat2x2 operator/(T scalar, tmat2x2 const & m) { return tmat2x2( scalar / m[0], scalar / m[1]); } template GLM_FUNC_QUALIFIER typename tmat2x2::col_type operator/(tmat2x2 const & m, typename tmat2x2::row_type const & v) { return inverse(m) * v; } template GLM_FUNC_QUALIFIER typename tmat2x2::row_type operator/(typename tmat2x2::col_type const & v, tmat2x2 const & m) { return v * inverse(m); } template GLM_FUNC_QUALIFIER tmat2x2 operator/(tmat2x2 const & m1, tmat2x2 const & m2) { tmat2x2 m1_copy(m1); return m1_copy /= m2; } // -- Boolean operators -- template GLM_FUNC_QUALIFIER bool operator==(tmat2x2 const & m1, tmat2x2 const & m2) { return (m1[0] == m2[0]) && (m1[1] == m2[1]); } template GLM_FUNC_QUALIFIER bool operator!=(tmat2x2 const & m1, tmat2x2 const & m2) { return (m1[0] != m2[0]) || (m1[1] != m2[1]); } } //namespace glm