From c835d10fb677b355783ecec43a8b3b34a4539616 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 5 Nov 2024 15:26:52 +0000 Subject: [PATCH] Cleanup --- Polygon_repair/doc/Polygon_repair/PackageDescription.txt | 8 +++++--- Triangulation_2/examples/Triangulation_2/CMakeLists.txt | 3 +-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Polygon_repair/doc/Polygon_repair/PackageDescription.txt b/Polygon_repair/doc/Polygon_repair/PackageDescription.txt index 4aaac43b06e..98d974c7a43 100644 --- a/Polygon_repair/doc/Polygon_repair/PackageDescription.txt +++ b/Polygon_repair/doc/Polygon_repair/PackageDescription.txt @@ -15,7 +15,8 @@ \cgalPkgAuthors{Ken Arroyo Ohori} \cgalPkgDesc{This package provides algorithms to repair 2D polygons, polygons with holes, and multipolygons with holes, by selecting faces of the arrangement of the input based on a selection rule. -Currently, only the even-odd rule and the non-zero rule are provided. } +The even-odd rule and the non-zero rule are provided for dealing with self intersections. +The %union and the %intersection rule enable to combine similar polygons. } \cgalPkgManuals{Chapter_2D_Polygon_repair,PkgPolygonRepairRef} \cgalPkgSummaryEnd @@ -33,7 +34,8 @@ Currently, only the even-odd rule and the non-zero rule are provided. } \cgalCRPSection{Functions} - `CGAL::Polygon_repair::repair()` -\cgalCRPSection{Simplification Rules} +\cgalCRPSection{Repair Rules} - `CGAL::Polygon_repair::Even_odd_rule` -- `CGAL::Polygon_repair::Non_zero_rule` +- `CGAL::Polygon_repair::Union_rule` +- `CGAL::Polygon_repair::Intersection_rule` */ diff --git a/Triangulation_2/examples/Triangulation_2/CMakeLists.txt b/Triangulation_2/examples/Triangulation_2/CMakeLists.txt index ed6100f50a9..3e3aafa5f56 100644 --- a/Triangulation_2/examples/Triangulation_2/CMakeLists.txt +++ b/Triangulation_2/examples/Triangulation_2/CMakeLists.txt @@ -16,8 +16,7 @@ foreach(cppfile ${cppfiles}) endforeach() if(CGAL_Qt6_FOUND) - target_link_libraries(boolean_constrained_plus PUBLIC CGAL::CGAL_Basic_viewer) - target_link_libraries(constrained PUBLIC CGAL::CGAL_Basic_viewer) + target_link_libraries(constrained PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(draw_triangulation_2 PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(polygon_triangulation PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(star_conflict_zone PUBLIC CGAL::CGAL_Basic_viewer)