CGAL 6.0 - Geometric Object Generators
Loading...
Searching...
No Matches
Generator/random_convex_set.cpp
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/point_generators_2.h>
#include <CGAL/random_convex_set_2.h>
#include <iostream>
#include <iterator>
typedef K::Point_2 Point_2;
Point_2,
Point_generator;
int main() {
// create 500-gon and write it into a window:
500,
std::ostream_iterator<Point_2>(std::cout, "\n"),
Point_generator( 0.5));
return 0;
}
The class Random_points_in_square_2 is an input iterator creating points uniformly distributed in a h...
Definition: point_generators_2.h:219
OutputIterator random_convex_set_2(std::size_t n, OutputIterator o, const PointGenerator &pg, Traits t=Random_convex_set_traits_2)
computes a random convex planar point set of given size where the points are drawn from a specific do...