This commit is contained in:
Clément Jamin 2012-04-24 08:05:22 +00:00
parent 8858e69823
commit d06b27b2c1
1 changed files with 10 additions and 6 deletions

View File

@ -603,6 +603,9 @@ Construct_initial_points::operator()(OutputIterator pts,
*pts++ = std::make_pair(CGAL::cpp0x::get<0>(intersection),
CGAL::cpp0x::get<1>(intersection));
/*Point_3 p = CGAL::cpp0x::get<0>(intersection);
std::cerr << p << std::endl;*/
--i;
#ifdef CGAL_MESH_3_VERBOSE
@ -612,6 +615,7 @@ Construct_initial_points::operator()(OutputIterator pts,
% n;
#endif
}
}
#else // !CGAL_MESH_3_INITIAL_POINTS_NO_RANDOM_SHOOTING
Random_points_on_sphere_3<Point_3> random_point(1.);
@ -637,17 +641,17 @@ Construct_initial_points::operator()(OutputIterator pts,
<< random_point->z()
<< "));" << std::endl;*/
#ifdef CGAL_MESH_3_VERBOSE
# ifdef CGAL_MESH_3_VERBOSE
std::cerr << boost::format("\r \r"
"%1%/%2% initial point(s) found...")
% (n - i)
% n;
#endif
# endif
}
++random_point;
#endif
}
#endif // CGAL_MESH_3_INITIAL_POINTS_NO_RANDOM_SHOOTING
#ifdef CGAL_MESH_3_VERBOSE
std::cerr << std::endl;