From d89f90055b4fa78e5963a85b8068c96c302ab8f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 20 Mar 2023 11:57:40 +0100 Subject: [PATCH] add example in doc + rephrase --- .../doc/Polygon_mesh_processing/examples.txt | 1 + .../CGAL/Polygon_mesh_processing/remesh_planar_patches.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Polygon_mesh_processing/doc/Polygon_mesh_processing/examples.txt b/Polygon_mesh_processing/doc/Polygon_mesh_processing/examples.txt index 3ce5384c81c..6f4199d0ee3 100644 --- a/Polygon_mesh_processing/doc/Polygon_mesh_processing/examples.txt +++ b/Polygon_mesh_processing/doc/Polygon_mesh_processing/examples.txt @@ -41,4 +41,5 @@ \example Polygon_mesh_processing/triangulate_faces_split_visitor_example.cpp \example Polygon_mesh_processing/hausdorff_bounded_error_distance_example.cpp \example Polygon_mesh_processing/cc_compatible_orientations.cpp +\example Polygon_mesh_processing/decimation_planar_patches.cpp */ diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh_planar_patches.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh_planar_patches.h index b4a7243f82f..d7618aac074 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh_planar_patches.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/remesh_planar_patches.h @@ -1293,8 +1293,8 @@ bool decimate_meshes_with_common_interfaces_impl(TriangleMeshRange& meshes, * first extracted (each such connected component is called a *patch*). Then the connected components of vertex * connected patch border edges belonging to the same line are extracted. Endpoints of such components and * vertices incident to more than two patches (or two patches + one mesh boundary) are called *corners*. - * `tm_out` contains the 2D constrained Delaunay triangulation of each patch with border defined by - * only corner vertices. + * `tm_out` contains the 2D constrained Delaunay triangulation of each patch using only only corner vertices + * on the boundary of the patch. * * \warning if `tm_in` contains a non-manifold vertex, `tm_out` will be empty. Those vertices must be * duplicated with `duplicate_non_manifold_vertices()` to get an output.