diff --git a/src/meshlabplugins/filter_meshing/meshfilter.cpp b/src/meshlabplugins/filter_meshing/meshfilter.cpp index 5834b8a12..2a95ab4cf 100644 --- a/src/meshlabplugins/filter_meshing/meshfilter.cpp +++ b/src/meshlabplugins/filter_meshing/meshfilter.cpp @@ -1067,6 +1067,9 @@ std::map ExtraMeshFilterPlugin::applyFilter( tri::Clean::RemoveDuplicateVertex(m.cm); tri::Clean::RemoveUnreferencedVertex(m.cm); tri::Allocator::CompactEveryVector(m.cm); + + // Remove faux edges that are ignored by the isotropic remeshing (it supports only triangles) + tri::UpdateFlags::FaceClearF(m.cm); m.updateBoxAndNormals();