From c2db4ede02e04e12aa09046ee99c6d5e3fc6d2f7 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni Date: Sun, 9 Sep 2018 09:29:46 +0200 Subject: [PATCH] small change in the init of the isotropic remeshing filter --- src/meshlabplugins/filter_meshing/meshfilter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_meshing/meshfilter.cpp b/src/meshlabplugins/filter_meshing/meshfilter.cpp index b4b94bd67..c1fd22977 100644 --- a/src/meshlabplugins/filter_meshing/meshfilter.cpp +++ b/src/meshlabplugins/filter_meshing/meshfilter.cpp @@ -921,7 +921,7 @@ switch(ID(filter)) } break; case FP_EXPLICIT_ISOTROPIC_REMESHING: { - m.updateDataMask( MeshModel::MM_GEOMETRY_AND_TOPOLOGY_CHANGE | MeshModel::MM_FACEFACETOPO | MeshModel::MM_VERTQUALITY | MeshModel::MM_FACEMARK | MeshModel::MM_FACEFLAG ); + m.updateDataMask( MeshModel::MM_FACEFACETOPO | MeshModel::MM_VERTFACETOPO | MeshModel::MM_VERTQUALITY | MeshModel::MM_FACEMARK | MeshModel::MM_FACEFLAG ); tri::Clean::RemoveDuplicateVertex(m.cm); tri::Clean::RemoveUnreferencedVertex(m.cm);