Browse Source

Fixed mat3x2 length fucntion

Christophe Riccio 14 years ago
parent
commit
a1d172153e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/core/type_mat3x2.inl

+ 1 - 1
glm/core/type_mat3x2.inl

@@ -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>