From d00c157c8698b06e2a0813f37d18651e58ff46cf Mon Sep 17 00:00:00 2001 From: Fabio Ganovelli ganovelli Date: Fri, 18 Jun 2010 11:48:43 +0000 Subject: [PATCH] updated calls to append::mesh --- src/meshlabplugins/filter_mls/mlsplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_mls/mlsplugin.cpp b/src/meshlabplugins/filter_mls/mlsplugin.cpp index cb77dd62f..175be5839 100644 --- a/src/meshlabplugins/filter_mls/mlsplugin.cpp +++ b/src/meshlabplugins/filter_mls/mlsplugin.cpp @@ -404,7 +404,7 @@ bool MlsPlugin::applyFilter(QAction* filter, MeshDocument& md, RichParameterSet& MeshModel* ref = par.getMesh("ControlMesh"); pPoints = new MeshModel(); pPoints->updateDataMask(ref); - vcg::tri::Append::Mesh(pPoints->cm, ref->cm, false, true); // the last true means "copy all vertices" + vcg::tri::Append::Mesh(pPoints->cm, ref->cm); // the last true means "copy all vertices" vcg::tri::UpdateBounding::Box(pPoints->cm); pPoints->cm.Tr = ref->cm.Tr; }