added a missing templatization od Point3 in Decompose (thanks Oscar Barney)
This commit is contained in:
parent
efd69c8291
commit
3d8400f86e
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue