From a1d172153eb8f2b95590ebe0621bf93ce17a7223 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 5 Jun 2011 11:58:09 +0100 Subject: [PATCH] Fixed mat3x2 length fucntion --- glm/core/type_mat3x2.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/core/type_mat3x2.inl b/glm/core/type_mat3x2.inl index baecb4da..09a07075 100644 --- a/glm/core/type_mat3x2.inl +++ b/glm/core/type_mat3x2.inl @@ -13,7 +13,7 @@ namespace detail template GLM_FUNC_QUALIFIER typename tmat3x2::size_type tmat3x2::length() const { - return 2; + return 3; } template