From 9e214da6ff89ff3204a2ae478ba92b5d292f1d0c Mon Sep 17 00:00:00 2001 From: cignoni Date: Mon, 11 Aug 2008 12:56:37 +0000 Subject: [PATCH] Re-inserted the return statement in the Invert() function that was erroneously removed with the previous commit. --- vcg/math/matrix44.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vcg/math/matrix44.h b/vcg/math/matrix44.h index 5596a6bb..cb53bfa8 100644 --- a/vcg/math/matrix44.h +++ b/vcg/math/matrix44.h @@ -801,6 +801,7 @@ template Matrix44 & Invert(Matrix44 &m) { for(int i = 0; i < 4; i++) m.ElementAt(i, j) = col[i]; } + return m; } template Matrix44 Inverse(const Matrix44 &m) {