Fixed deadlock in test_cone_parameters by increasing point density

This commit is contained in:
Sven Oesau 2015-06-29 15:49:42 +02:00
parent dc3eb93332
commit 272b29209e
1 changed files with 2 additions and 2 deletions

View File

@ -188,8 +188,8 @@ void sample_random_cone(const std::size_t num_points,
apex = random_point_in<K>(CGAL::Bbox_3(-5, -5, -5, 5, 5, 5));
axis = random_normal<K>();
angle = random_float((FT) 0.2, (FT) 1.4);
FT start = random_float((FT) 0, (FT) 2.5);
FT end = start + random_float((FT) 0.5, (FT) 2.5);
FT start = random_float((FT) 0, (FT) 1.0);
FT end = start + random_float((FT) 0.5, (FT) 1.5);
mid = (start + end) / (FT) 2.0;