mirror of https://github.com/CGAL/cgal
Trailing whitespace in Spatial searching
This commit is contained in:
parent
e64f271451
commit
fe8f36bcac
|
|
@ -26,7 +26,6 @@ typedef Point_with_info_helper<Point>::type
|
|||
typedef Point_property_map<Point> Ppmap;
|
||||
typedef CGAL::Search_traits_adapter<Point_with_info,Ppmap,Traits> Traits_with_info;
|
||||
|
||||
|
||||
template <class Traits>
|
||||
void run(std::list<Point> all_points){
|
||||
typedef CGAL::Fuzzy_sphere<Traits> Fuzzy_circle;
|
||||
|
|
@ -96,7 +95,7 @@ int main() {
|
|||
const int N=1000;
|
||||
|
||||
// generator for random data points in the square ( (-1,-1), (1,1) )
|
||||
Random_points_iterator rpit( 1.0);
|
||||
Random_points_iterator rpit(1.0);
|
||||
|
||||
// construct list containing N random points
|
||||
std::list<Point> all_points(N_Random_points_iterator(rpit,0),
|
||||
|
|
@ -107,4 +106,3 @@ int main() {
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue