cgal/Triangulation_3/examples/Triangulation_3
Christophe Delage a7f0ead112 Triangulation_3 iterator range insert and constructors now
use spatial_sort.
Examples and demos now call range insert when possible.
2007-03-30 09:30:22 +00:00
..
README Corrects the example source names in the README (example_ prefix was still there). 2007-03-27 08:54:03 +00:00
adding_handles.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
color.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
find_conflicts.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
hierarchy.cpp Triangulation_3 iterator range insert and constructors now 2007-03-30 09:30:22 +00:00
linking_2d_and_3d.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
regular.cpp Triangulation_3 iterator range insert and constructors now 2007-03-30 09:30:22 +00:00
simple.cpp More redundant filename removal. 2007-03-10 15:22:41 +00:00
simplex.cpp More redundant filename removal. 2007-03-10 15:22:41 +00:00
tds.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00

README

------- simple -----------------------------------------------

This example shows the incremental construction of a 3D triangulation, 
the location of a point, and how to manipulate elementary operations
on indices in a cell. It uses the default parameters proposed by
CGAL for the Triangulation_3 class.

--------------------------------------------------------------

------- color ------------------------------------------------

This example shows how the user can plug his own vertex base in a
triangulation.

--------------------------------------------------------------

------- adding_handles ---------------------------------------

This example shows how the user can plug his own vertex base
in a triangulation, when he needs to add handles in it.

--------------------------------------------------------------

------- hierarchy --------------------------------------------

This example shows the use of the hierarchy to speed up the 
construction of a Delaunay triangulation. 

--------------------------------------------------------------

------- tds --------------------------------------------------

Shows how to construct a 3D triangulation data structure by 
inserting vertices.

--------------------------------------------------------------

------- find_conflicts ---------------------------------------

Illustrates how the insertion process of points in a Delaunay
triangulation can be decomposed in order to give access to the
cells in conflict (those which would be destroyed by the insertion
of a point) prior to deciding to do the actual insertion or not.

--------------------------------------------------------------

------- linking_2d_and_3d ------------------------------------

Illustrates how to setup a 2D and a 3D triangulation data structure
whose vertices respectively store vertex handles of the other one.

--------------------------------------------------------------

------- regular ----------------------------------------------

Illustrates the use of Regular_triangulation_3.

--------------------------------------------------------------

------- simplex ----------------------------------------------

Illustrates the use of Triangulation_3::Simplex.

--------------------------------------------------------------