remove memcpy from point_matching_scale.h
This commit is contained in:
parent
9cb1a267fa
commit
b8bb88063e
|
|
@ -93,7 +93,8 @@ public:
|
||||||
// rtm = rototranslation
|
// rtm = rototranslation
|
||||||
RotoTranslation<double> rt;
|
RotoTranslation<double> rt;
|
||||||
vcg::Matrix44d rtm;
|
vcg::Matrix44d rtm;
|
||||||
memcpy(&rt._v[0],&x[1],6*sizeof(double));
|
for (unsigned int i = 0; i < 6; ++i)
|
||||||
|
rt._v[i] = x[i+1];
|
||||||
rt.toMatrix(rtm);
|
rt.toMatrix(rtm);
|
||||||
|
|
||||||
// res= scaling w.r.t. barycenter
|
// res= scaling w.r.t. barycenter
|
||||||
|
|
@ -122,7 +123,8 @@ public:
|
||||||
|
|
||||||
RotoTranslation<double> rt;
|
RotoTranslation<double> rt;
|
||||||
vcg::Matrix44d m;
|
vcg::Matrix44d m;
|
||||||
memcpy(&rt._v[0],&x[1],6*sizeof(double));
|
for (unsigned int i = 0; i < 6; ++i)
|
||||||
|
rt._v[i] = x[i+1];
|
||||||
rt.toMatrix(m);
|
rt.toMatrix(m);
|
||||||
|
|
||||||
for(; i != mov->end(); ++i,++ifix) {
|
for(; i != mov->end(); ++i,++ifix) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue