|
|
@ -73,15 +73,6 @@ namespace glm |
|
|
|
# endif |
|
|
|
# endif |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
template <typename T, precision P> |
|
|
|
|
|
|
|
GLM_FUNC_QUALIFIER tmat4x2<T, P>::tmat4x2(tmat4x2<T, P> const & m) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
this->value[0] = m.value[0]; |
|
|
|
|
|
|
|
this->value[1] = m.value[1]; |
|
|
|
|
|
|
|
this->value[2] = m.value[2]; |
|
|
|
|
|
|
|
this->value[3] = m.value[3]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T, precision P> |
|
|
|
template <typename T, precision P> |
|
|
|
template <precision Q> |
|
|
|
template <precision Q> |
|
|
|
GLM_FUNC_QUALIFIER tmat4x2<T, P>::tmat4x2(tmat4x2<T, Q> const & m) |
|
|
|
GLM_FUNC_QUALIFIER tmat4x2<T, P>::tmat4x2(tmat4x2<T, Q> const & m) |
|
|
@ -262,16 +253,6 @@ namespace glm |
|
|
|
////////////////////////////////////////////////////////////// |
|
|
|
////////////////////////////////////////////////////////////// |
|
|
|
// Unary updatable operators |
|
|
|
// Unary updatable operators |
|
|
|
|
|
|
|
|
|
|
|
template <typename T, precision P> |
|
|
|
|
|
|
|
GLM_FUNC_QUALIFIER tmat4x2<T, P>& tmat4x2<T, P>::operator=(tmat4x2<T, P> const & m) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
this->value[0] = m[0]; |
|
|
|
|
|
|
|
this->value[1] = m[1]; |
|
|
|
|
|
|
|
this->value[2] = m[2]; |
|
|
|
|
|
|
|
this->value[3] = m[3]; |
|
|
|
|
|
|
|
return *this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T, precision P> |
|
|
|
template <typename T, precision P> |
|
|
|
template <typename U> |
|
|
|
template <typename U> |
|
|
|
GLM_FUNC_QUALIFIER tmat4x2<T, P>& tmat4x2<T, P>::operator=(tmat4x2<U, P> const & m) |
|
|
|
GLM_FUNC_QUALIFIER tmat4x2<T, P>& tmat4x2<T, P>::operator=(tmat4x2<U, P> const & m) |
|
|
|