mention the visitor in the user manual

This commit is contained in:
Sébastien Loriot 2022-05-05 14:46:51 +02:00
parent 91cb65b0c2
commit ea39f5def6
2 changed files with 5 additions and 0 deletions

View File

@ -457,6 +457,10 @@ class and a few others are part of the code base.
Holes in the fork model are filled with triangle patches.
\cgalFigureEnd
An additional parameter, named `visitor` can be used to track which phase of the algorithm is being run.
This can allow a user to stop the algorithm if a timeout needs to be implemented. For an example, see
\ref Polygon_mesh_processing/hole_filling_visitor_example.cpp .
\subsection HFPerformance Performance
The hole filling algorithm has a complexity which depends on the

View File

@ -7,6 +7,7 @@
\example Polygon_mesh_processing/self_intersections_example.cpp
\example Polygon_mesh_processing/hole_filling_example.cpp
\example Polygon_mesh_processing/hole_filling_example_SM.cpp
\example Polygon_mesh_processing/hole_filling_visitor_example.cpp
\example Polygon_mesh_processing/stitch_borders_example.cpp
\example Polygon_mesh_processing/compute_normals_example.cpp
\example Polygon_mesh_processing/point_inside_example.cpp