Cleaned output

This commit is contained in:
Mael Rouxel-Labbé 2018-06-06 17:02:50 +02:00
parent 0bffa6adb0
commit 9e66bc65ef
1 changed files with 0 additions and 4 deletions

View File

@ -288,10 +288,6 @@ snap_to_domain_border(const typename Gt_::Point_3& p, const Gt_& gt)
if(CGAL::abs(pz - dzm) < eps) sz = dzm; if(CGAL::abs(pz - dzm) < eps) sz = dzm;
if(CGAL::abs(pz - dzM) < eps) sz = dzM; if(CGAL::abs(pz - dzM) < eps) sz = dzM;
std::cout << "epsilon: " << eps << std::endl;
std::cout.precision(20);
std::cout << "snapped " << p << " to " << sx << " " << sy << " " << sz << std::endl;
return gt.construct_point_3_object()(sx, sy, sz); return gt.construct_point_3_object()(sx, sy, sz);
} }