From e724f0bd62bd996c353562e01579abb039adf24b Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Tue, 2 Jul 2019 14:41:47 +0200 Subject: [PATCH] Activate debug output for repair_soup_plugin --- Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.cpp index 8df409d7547..7a84ee2d911 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polygon_soup_item.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include @@ -25,6 +26,8 @@ #include #include #include + +#define CGAL_PMP_REPAIR_POLYGON_SOUP_VERBOSE 1 #include #include @@ -41,11 +44,14 @@ #include #include +#include + using namespace CGAL::Three; typedef Viewer_interface Vi; typedef Triangle_container Tc; typedef Edge_container Ec; typedef Point_container Pc; + struct Scene_polygon_soup_item_priv{ typedef Polygon_soup::Polygons::const_iterator Polygons_iterator; @@ -858,6 +864,8 @@ void Scene_polygon_soup_item::repair(bool erase_dup, bool req_same_orientation) erase_all_duplicates(erase_dup) .require_same_orientation(req_same_orientation)); QApplication::restoreOverrideCursor(); + + // CGAL::Three::Three::information( } CGAL::Three::Scene_item::Header_data Scene_polygon_soup_item::header() const