Re-inserted the return statement in the Invert() function that was erroneously removed with the previous commit.

This commit is contained in:
Paolo Cignoni 2008-08-11 12:56:37 +00:00
parent 65320e40a7
commit 9e214da6ff
1 changed files with 1 additions and 0 deletions

View File

@ -801,6 +801,7 @@ template <class T> Matrix44<T> & Invert(Matrix44<T> &m) {
for(int i = 0; i < 4; i++)
m.ElementAt(i, j) = col[i];
}
return m;
}
template <class T> Matrix44<T> Inverse(const Matrix44<T> &m) {