diff --git a/Packages/Snap_rounding_2/include/CGAL/Snap_rounding_2.h b/Packages/Snap_rounding_2/include/CGAL/Snap_rounding_2.h index 2c548180299..7d8caaad083 100644 --- a/Packages/Snap_rounding_2/include/CGAL/Snap_rounding_2.h +++ b/Packages/Snap_rounding_2/include/CGAL/Snap_rounding_2.h @@ -492,13 +492,15 @@ bool Hot_Pixel::intersect_top(Segment_2 &seg) const Snap_rounding_2::get_direction() == Snap_rounding_2::DOWN_LEFT || Snap_rounding_2::get_direction() == - Snap_rounding_2::DOWN_RIGHT) && tar_y != y + pixel_size / 2.0 || + Snap_rounding_2::DOWN_RIGHT) && tar_y != y + + pixel_size / 2.0 || (Snap_rounding_2::get_direction() == Snap_rounding_2::UP || Snap_rounding_2::get_direction() == Snap_rounding_2::UP_LEFT || Snap_rounding_2::get_direction() == - Snap_rounding_2::UP_RIGHT) && sou_y != y + pixel_size / 2.0); + Snap_rounding_2::UP_RIGHT) && sou_y != y + + pixel_size / 2.0); } else return(false); } @@ -607,11 +609,15 @@ void Snap_rounding_2::find_hot_pixels_and_create_kd_trees() /* for(list::iterator v_iter = subcurves.begin(); v_iter != subcurves.end(); ++v_iter) { - hp = new Hot_Pixel(v_iter->source().x(),v_iter->source().y(),pixel_size); + hp = new Hot_Pixel(v_iter->source().x(), + v_iter->source().y(), + pixel_size); if(hp_set.insert(hp).second) hot_pixels_list.push_back(pair,Hot_Pixel *>( pair(hp->get_x(),hp->get_y()),hp)); - hp = new Hot_Pixel(v_iter->target().x(),v_iter->target().y(),pixel_size); + hp = new Hot_Pixel(v_iter->target().x(), + v_iter->target().y(), + pixel_size); if(hp_set.insert(hp).second) hot_pixels_list.push_back(pair,Hot_Pixel *>( pair(hp->get_x(),hp->get_y()),hp));