Skip to content

Commit

Permalink
reverted back commented out statement
Browse files Browse the repository at this point in the history
  • Loading branch information
efifogel committed Jun 11, 2023
1 parent b0a2e09 commit 7ffda35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Arrangement_on_surface_2/include/CGAL/draw_arrangement_2.h
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ class Aos_2_basic_viewer_qt : public Basic_viewer_qt {
template <typename Approximate>
void draw_approximate_region(Halfedge_const_handle curr,
const Approximate& approx) {
// std::cout << "draw_approximate_region()\n";
std::vector<typename Gt::Approximate_point_2> polyline;
double error(this->pixel_ratio());
bool l2r = curr->direction() == ARR_LEFT_TO_RIGHT;
Expand All @@ -267,7 +268,7 @@ class Aos_2_basic_viewer_qt : public Basic_viewer_qt {
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);
}
}

Expand Down

0 comments on commit 7ffda35

Please sign in to comment.