From f61a72f1f6ef31ea05ef2f18e01b33388bc5eab1 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni Date: Wed, 28 Apr 2021 08:55:25 +0200 Subject: [PATCH] Update cleanfilter.cpp Improve description of parameter vertdispratio for repair_non_manifold_vertices_by_splitting --- src/meshlabplugins/filter_clean/cleanfilter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_clean/cleanfilter.cpp b/src/meshlabplugins/filter_clean/cleanfilter.cpp index 2ff66afd1..1e0f76b4e 100644 --- a/src/meshlabplugins/filter_clean/cleanfilter.cpp +++ b/src/meshlabplugins/filter_clean/cleanfilter.cpp @@ -264,7 +264,7 @@ void CleanFilter::initParameterList(const QAction *action, const MeshDocument &m "Repeat", true, "Iterate until convergence", "Iterates the algorithm until it reaches convergence")); break; case FP_REMOVE_NON_MANIF_VERT : - parlst.addParam(RichFloat("VertDispRatio", 0, "Vertex Displacement Ratio", "When a vertex is split it is moved along the average vector going from its position to the baricyenter of the FF connected faces sharing it")); + parlst.addParam(RichFloat("VertDispRatio", 0, "Vertex Displacement Ratio", "This parameter denote the ratio ⍺ of displacement of a vertex. When a vertex v is split, it is moved towards the barycenter b of the FF connected faces sharing it of a (v-b)*⍺. When ⍺ is zero vertex is not displaced. When ⍺ is 0.5 the new vertex is half away toward the barycenter of the face. Reasonable values are in the [0 .. 0.1] range. ")); break; default: break; // do not add any parameter for the other filters }