cgal/Triangulation_3/examples/Triangulation_3
Sébastien Loriot ded66799a6 make the insertion of a range of points with info working with hierarchy 2013-08-05 15:03:46 +02:00
..
README Merge the Triangulation_3_Location_policy branch. 2009-11-04 12:57:51 +00:00
adding_handles_3.cpp rename to have unique example file names 2008-11-27 19:12:13 +00:00
color.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00
copy_triangulation_3.cpp add set_infinite_vertex to Triangulation_3 and use it with copy_tds 2013-04-12 16:04:59 +02:00
fast_location_3.cpp Merge the Triangulation_3_Location_policy branch. 2009-11-04 12:57:51 +00:00
find_conflicts_3.cpp Rename examples/Triangulation_3/find_conflicts.cpp to find_conflicts_3.cpp, 2009-07-23 14:51:05 +00:00
info_insert_with_pair_iterator.cpp make the insertion of a range of points with info working with hierarchy 2013-08-05 15:03:46 +02:00
info_insert_with_pair_iterator_regular.cpp remove commented lines from example. 2011-03-04 07:12:17 +00:00
info_insert_with_transform_iterator.cpp fix documentation from branch (code merged in r60697) 2011-02-28 17:22:38 +00:00
info_insert_with_zip_iterator.cpp fix documentation from branch (code merged in r60697) 2011-02-28 17:22:38 +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_3.cpp Regular_triangulation_filtered_traits_3 is now deprecated 2009-10-20 21:44:47 +00:00
simple_triangulation_3.cpp int -> size_type/std::size_t 2010-06-21 14:12:02 +00:00
simplex.cpp include only needed headers 2008-01-20 19:00:55 +00:00
tds.cpp Removing leading and trailing empty lines from all example files. 2007-03-10 16:17:17 +00:00

README

------- simple_triangulation_3 -----------------------------------------------

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_3 ---------------------------------------

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


------- fast_location_3 --------------------------------------------

This example shows the use of the Fast_location policy to speed up
point location queries in a Delaunay triangulation. 

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

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


------- find_conflicts_3 ---------------------------------------

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_3 ----------------------------------------------

Illustrates the use of Regular_triangulation_3.


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

Illustrates the use of Triangulation_3::Simplex.