From e8b68a3de8efb2f0de9153204e1eb2de9c8eff65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 2 Dec 2020 18:16:38 +0100 Subject: [PATCH] dump prims at the end of init --- Polygon_mesh_processing/include/CGAL/Polyhedral_envelope.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Polygon_mesh_processing/include/CGAL/Polyhedral_envelope.h b/Polygon_mesh_processing/include/CGAL/Polyhedral_envelope.h index 2782d4d5685..2803287ebc9 100644 --- a/Polygon_mesh_processing/include/CGAL/Polyhedral_envelope.h +++ b/Polygon_mesh_processing/include/CGAL/Polyhedral_envelope.h @@ -514,6 +514,12 @@ private: datum_map, point_map); tree.build(); + +#ifdef CGAL_ENVELOPE_DEBUG + for(unsigned int i = 0; i < halfspace.size(); ++i){ + prism_to_off(i, "prism"); + } +#endif }