From f61a69c94ffa8c3649f12feed934cd45b2e1ef7d Mon Sep 17 00:00:00 2001 From: cnr-isti-vclab Date: Wed, 23 Jul 2008 17:30:30 +0000 Subject: [PATCH] in "ComputeRigidMatchMatrix(std::vector weights,Matrix44x &res,std::vector &Pfix,std::vector &Pmov)" I changed: Quaterniond qtmp; ----->to------> Quaternionx qtmp; Point3d tr; ----->to------> Point3x tr; --- vcg/math/point_matching.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcg/math/point_matching.h b/vcg/math/point_matching.h index 425877b1..6d9dd86c 100644 --- a/vcg/math/point_matching.h +++ b/vcg/math/point_matching.h @@ -99,8 +99,8 @@ static bool ComputeRigidMatchMatrix(std::vector weights, std::vector &Pfix, // vertici corrispondenti su fix (rossi) std::vector &Pmov) // normali scelti su mov (verdi) { - Quaterniond qtmp; - Point3d tr; + Quaternionx qtmp; + Point3x tr; return ComputeWeightedRigidMatchMatrix(res,Pfix,Pmov,weights,qtmp,tr); }