From 7ffda351d2a6eb9d758dd477ae4aa10c54015356 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Sun, 11 Jun 2023 17:36:59 +0300 Subject: [PATCH] reverted back commented out statement --- Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h b/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h index 6049c280554..3b1fce717e8 100644 --- a/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h +++ b/Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h @@ -258,6 +258,7 @@ protected: template void draw_approximate_region(Halfedge_const_handle curr, const Approximate& approx) { + // std::cout << "draw_approximate_region()\n"; std::vector polyline; double error(this->pixel_ratio()); bool l2r = curr->direction() == ARR_LEFT_TO_RIGHT; @@ -267,7 +268,7 @@ protected: auto prev = it++; for (; it != polyline.end(); prev = it++) { this->add_segment(*prev, *it); - // this->add_point_in_face(*prev); + this->add_point_in_face(*prev); } }