cgal/Generator/examples/Generator
Sylvain Pion 847c23a15e Removing leading and trailing empty lines from all example files.
Using the following Perl script:
-----------------------------------------------------
#!/usr/bin/perl

local($/) = undef;
my $text = <>;

$text =~ s/\A\n+//mg;
$text =~ s/\n+\Z/\n/mg;

print "$text";
-----------------------------------------------------
2007-03-10 16:17:17 +00:00
..
README
random_convex_set.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
random_degenerate_point_set.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
random_grid.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
random_polygon.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
random_polygon2.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
random_segments1.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
random_segments2.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00

README

Segment_generator_example1.C
    example program for generic segment generator.  A number of segments
    are generated and copied to a vector of segments.

Segment_generator_example2.C
    example program for the generic segment generator using precomputed
    point locations.

generators_example1.C
    generates 1000 points as follows: 600 are draw from a disc; 200 are
    drawn from a grid; 100 are duplicates; 100 are collinear points

generators_example2.C
    generates 500 points with integer coordinates

random_polzgon_ex.C
    generates a random polygon from a randomly chosen number of points
    and prints the polygon to standard output