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; }