Fixed mat3x2 length fucntion

This commit is contained in:
Christophe Riccio 2011-06-05 11:58:09 +01:00
parent 7e275a6511
commit a1d172153e

View File

@ -13,7 +13,7 @@ namespace detail
template <typename T>
GLM_FUNC_QUALIFIER typename tmat3x2<T>::size_type tmat3x2<T>::length() const
{
return 2;
return 3;
}
template <typename T>