line 193 corrected composition of transformations

This commit is contained in:
Nico Pietroni 2012-01-12 00:52:04 +00:00
parent 3f7786cb43
commit bb7fbdcc88
1 changed files with 1 additions and 1 deletions

View File

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