cgal/Packages/Triangulation_2/examples/Triangulation_2
Mariette Yvinec 441cb609d4 change number type from MPFLOAT to Gmpz
to avoid a crash ...
2002-04-09 15:59:58 +00:00
..
data
Makefile fixed details in test_triangulation_geom_traits.C 2002-04-08 08:09:46 +00:00
Makefilevc
README
cgal_test
colored_face.C
constrained.C
constrained_plus.C add missing types 2002-04-09 11:29:43 +00:00
points.C
points.cmd
points.h
regular.C
terrain.C change number type from MPFLOAT to Gmpz 2002-04-09 15:59:58 +00:00
triangulation_prog1.C
voronoi.C

README

To compule and run all these examples type :
./cgal_test
To compute and run only some of them type
./cgal_test name-of_wanted_example

triangulation_prog1:
The following program creates a triangulation of 2D points using the
kernel model class CGAL::Cartesian<double> as geometric traits and the
default instanciation of the triangulation data structure template
parameter.
 The input points are read from a file and inserted in the
triangulation.  Finally points on the convex hull are written to {\tt
cout}.


colored_face
Illustrates how the user can derive its own base face from the default
one to add e. g. a color.

voronoi:
Builds a Delaunay triangulation from input points in a file
and takes the dual Voronoi diagram

terrain
Build a terrain using a Delaunay triangulation with the traits class for 
terrains.

regular
Build a regular triangulation

constrained
input constraining edges from a file and build the Delaunay
constrained triangulation that conforms to these constraining edges.

constrained_plus
Intersecting constraints are entered in a triangulation.
The number of resulting subconstraints is output;

points:
Illustrates how to input user defined points and a user provided traits
class in a Triangulation