From e4311e9d5a93e4dd3606117565e732cdf8939917 Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 20 Dec 2013 11:46:50 +0000 Subject: [PATCH] Added comment to voronoi parameter --- vcg/complex/algorithms/voronoi_clustering.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vcg/complex/algorithms/voronoi_clustering.h b/vcg/complex/algorithms/voronoi_clustering.h index e2437cfa..f1f31bd8 100644 --- a/vcg/complex/algorithms/voronoi_clustering.h +++ b/vcg/complex/algorithms/voronoi_clustering.h @@ -89,7 +89,9 @@ struct VoronoiProcessingParameter bool preserveFixedSeed; /// If true the 'fixed' seeds are not moved during relaxation. /// \see FixVertexVector function to see how to fix a set of seeds. - bool triangulateRegion; + bool triangulateRegion; /// If true when building the voronoi diagram mesh each region is a + /// triangulated polygon. Otherwise it each voronoi region is a star + /// triangulation with the original seed in the center. bool collapseShortEdge; float collapseShortEdgePerc;