added a missing templatization od Point3 in Decompose (thanks Oscar Barney)

This commit is contained in:
ganovelli 2008-09-22 13:49:15 +00:00
parent efd69c8291
commit 3d8400f86e
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ bool Decompose(Matrix44<T> &M, Point3<T> &ScaleV, Point3<T> &ShearV, Point3<T> &
// Second Step Recover Scale and Shearing interleaved
ScaleV[0]=Norm(M.GetColumn3(0));
Point3d R[3];
Point3<T> R[3];
R[0]=M.GetColumn3(0);
R[0].Normalize();