Re-inserted the return statement in the Invert() function that was erroneously removed with the previous commit.
This commit is contained in:
parent
65320e40a7
commit
9e214da6ff
|
@ -801,6 +801,7 @@ template <class T> Matrix44<T> & Invert(Matrix44<T> &m) {
|
||||||
for(int i = 0; i < 4; i++)
|
for(int i = 0; i < 4; i++)
|
||||||
m.ElementAt(i, j) = col[i];
|
m.ElementAt(i, j) = col[i];
|
||||||
}
|
}
|
||||||
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T> Matrix44<T> Inverse(const Matrix44<T> &m) {
|
template <class T> Matrix44<T> Inverse(const Matrix44<T> &m) {
|
||||||
|
|
Loading…
Reference in New Issue