cgal/Packages/Triangulation_2/examples/Triangulation_2
Mariette Yvinec 2a63af82ab added demo and examples for Constrained_triangulation_plus_2
off_file_input() in Triangulation_data_structure_2.h
doc for Constrained_triangulation_plus_2
2002-02-08 17:16:30 +00:00
..
data remove duplicate data file 2001-07-24 12:09:48 +00:00
Makefile added doc for Constrained_triangulation_plus_2 2002-02-05 14:23:28 +00:00
Makefilevc
README added demo and examples for Constrained_triangulation_plus_2 2002-02-08 17:16:30 +00:00
cgal_test add call to constrained.C 2001-07-24 12:13:49 +00:00
colored_face.C major change in Triangulation package : 2002-01-21 13:12:40 +00:00
constrained.C move the data inpyt for constrained triangulation 2001-07-24 11:58:17 +00:00
constrained_plus.C added demo and examples for Constrained_triangulation_plus_2 2002-02-08 17:16:30 +00:00
points.C major change in Triangulation package : 2002-01-21 13:12:40 +00:00
points.cmd
points.h
regular.C *** empty log message *** 2001-07-06 14:38:02 +00:00
terrain.C
triangulation_prog1.C
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.

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