ongoing testing

This commit is contained in:
ganovelli 2011-05-23 15:09:21 +00:00
parent b31fc9ddec
commit b61d049408
1 changed files with 4 additions and 4 deletions

View File

@ -477,11 +477,11 @@ void Shot<S, RotationType>::ApplyRigidTransformation(Matrix44<S> & M)
Extrinsics.tra = M * Extrinsics.tra; Extrinsics.tra = M * Extrinsics.tra;
// nullify translation // nullify translation
//M.ElementAt(0,3) = 0; M.ElementAt(0,3) = 0;
//M.ElementAt(1,3) = 0; M.ElementAt(1,3) = 0;
//M.ElementAt(2,3) = 0; M.ElementAt(2,3) = 0;
Extrinsics.rot = M.transpose() * rotM; Extrinsics.rot = rotM * M.transpose();
} }