use transposeInPlace

This commit is contained in:
Gael Guennebaud guennebaud 2008-10-29 11:17:25 +00:00
parent bbab02bfad
commit 99074e151d
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ bool EpochCamera::Open(const char *filename)
// on the right the rotated translation -Rt and 0001 in the
// lower line.
R = R.transpose().eval();
R.transposeInPlace();
#ifndef VCG_USE_EIGEN
for(int i=0;i<3;++i)
for(int j=0;j<3;++j)

View File

@ -2209,7 +2209,7 @@ namespace io {
{
vcg::Point3f normal(list.at(index).toFloat(), list.at(index + 1).toFloat(), list.at( index+ 2).toFloat());
vcg::Matrix44f intr44 = vcg::Inverse(tMatrix);
intr44 = intr44.transpose().eval();
intr44.transposeInPlace();
Matrix33f intr33;
for(unsigned int rr = 0; rr < 2; ++rr)
{