useless matrix multiplication removed

This commit is contained in:
ganovelli 2008-01-03 17:42:03 +00:00
parent a7e016e1ef
commit 7ddf584fac
1 changed files with 0 additions and 1 deletions

View File

@ -277,7 +277,6 @@ bool ComputeRigidMatchMatrix(Matrix44x &res,
Matrix44x Trn;
Trn.SetTranslate(tr);
res=Rot*Trn;
res=Trn*Rot;
return true;
}