in "ComputeRigidMatchMatrix(std::vector<ScalarType> weights,Matrix44x &res,std::vector<Point3x> &Pfix,std::vector<Point3x> &Pmov)" I changed:

Quaterniond qtmp;  ----->to------>	Quaternionx qtmp;
Point3d tr;	   ----->to------>	Point3x tr;
This commit is contained in:
Paolo Cignoni 2008-07-23 17:30:30 +00:00
parent 6a4631b94b
commit f61a69c94f
1 changed files with 2 additions and 2 deletions

View File

@ -99,8 +99,8 @@ static bool ComputeRigidMatchMatrix(std::vector<ScalarType> weights,
std::vector<Point3x> &Pfix, // vertici corrispondenti su fix (rossi)
std::vector<Point3x> &Pmov) // normali scelti su mov (verdi)
{
Quaterniond qtmp;
Point3d tr;
Quaternionx qtmp;
Point3x tr;
return ComputeWeightedRigidMatchMatrix(res,Pfix,Pmov,weights,qtmp,tr);
}