cgal/Packages/Triangulation_2/examples/Triangulation_2
Mariette Yvinec 85089e9a1a *** empty log message *** 2001-07-24 12:30:08 +00:00
..
data remove duplicate data file 2001-07-24 12:09:48 +00:00
Makefile added an example for delaunay constrained triangulations 2001-07-20 16:58:03 +00:00
Makefilevc
README *** empty log message *** 2001-07-24 12:30:08 +00:00
cgal_test add call to constrained.C 2001-07-24 12:13:49 +00:00
colored_face.C tried to fix examples 2001-06-21 15:30:02 +00:00
constrained.C move the data inpyt for constrained triangulation 2001-07-24 11:58:17 +00:00
points.C tried to fix examples 2001-06-21 15:30:02 +00:00
points.cmd
points.h
regular.C *** empty log message *** 2001-07-06 14:38:02 +00:00
terrain.C cosmetic for the manual 2001-07-05 16:52:31 +00:00
triangulation_prog1.C tried to fix examples 2001-06-21 15:30:02 +00:00
voronoi.C *** empty log message *** 2001-07-06 14:38:02 +00:00

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.

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