From Colin McDonald, "Fix for missing class name qualifier on the orthoNormal function."

This commit is contained in:
Robert Osfield
2005-11-02 10:45:56 +00:00
parent 781f6d3cec
commit 4c1110858a

View File

@@ -466,7 +466,7 @@ inline Matrixd Matrixd::inverse( const Matrixd& matrix)
return m;
}
inline Matrixd orthoNormal(const Matrixd& matrix)
inline Matrixd Matrixd::orthoNormal(const Matrixd& matrix)
{
Matrixd m;
m.orthoNormalize(matrix);