reverted back commented out statement

This commit is contained in:
Efi Fogel 2023-06-11 17:36:59 +03:00
parent b0a2e09fb2
commit 7ffda351d2
1 changed files with 2 additions and 1 deletions

View File

@ -258,6 +258,7 @@ protected:
template <typename Approximate> template <typename Approximate>
void draw_approximate_region(Halfedge_const_handle curr, void draw_approximate_region(Halfedge_const_handle curr,
const Approximate& approx) { const Approximate& approx) {
// std::cout << "draw_approximate_region()\n";
std::vector<typename Gt::Approximate_point_2> polyline; std::vector<typename Gt::Approximate_point_2> polyline;
double error(this->pixel_ratio()); double error(this->pixel_ratio());
bool l2r = curr->direction() == ARR_LEFT_TO_RIGHT; bool l2r = curr->direction() == ARR_LEFT_TO_RIGHT;
@ -267,7 +268,7 @@ protected:
auto prev = it++; auto prev = it++;
for (; it != polyline.end(); prev = it++) { for (; it != polyline.end(); prev = it++) {
this->add_segment(*prev, *it); this->add_segment(*prev, *it);
// this->add_point_in_face(*prev); this->add_point_in_face(*prev);
} }
} }