cgal/Triangulation_2/examples/Triangulation_2
Simon Giraudot d314711eaf Merge remote-tracking branch 'mine/Stream_support-Enhance_color-GF' into Stream_support-Enhance_color-GF 2019-04-09 15:00:56 +02:00
..
data
CMakeLists.txt Fix CMake warnings about CMP for Visual 2017 2018-11-21 16:17:39 +01:00
README fix documentation from branch (code merged in r60697) 2011-02-28 17:22:38 +00:00
adding_handles.cpp
colored_face.cpp Replace old color API using global const variable with new one using functions 2019-04-03 11:51:29 +02:00
constrained.cpp Introduce CGAL::Default for the TDS of constrained triangulations 2016-03-23 10:27:39 +01:00
constrained_hierarchy_plus.cpp
constrained_plus.cpp Polyhedron, Intersections, PSP 2019-02-14 11:06:13 +01:00
copy_triangulation_2.cpp remove cpp11::copy_n, cpp11::prev, and cpp11::next and use std instead 2019-03-29 13:28:32 +01:00
draw_triangulation_2.cpp * Add draw examples in the 5 concerned packages (Polyhedron, Surface_mesh, T2, T3, LCC) 2018-05-29 11:11:49 +02:00
hierarchy.cpp remove cpp11::copy_n, cpp11::prev, and cpp11::next and use std instead 2019-03-29 13:28:32 +01:00
info_insert_with_pair_iterator_2.cpp fix documentation from branch (code merged in r60697) 2011-02-28 17:22:38 +00:00
info_insert_with_pair_iterator_regular_2.cpp Do not use Regular_triangulation_euclidean_traits_2 in examples 2016-12-08 12:47:46 +01:00
info_insert_with_transform_iterator_2.cpp Moved unary/binary_function to CGAL::cpp98 2018-06-13 15:58:19 +02:00
info_insert_with_zip_iterator_2.cpp fix documentation from branch (code merged in r60697) 2011-02-28 17:22:38 +00:00
polygon_triangulation.cpp Mark the polyline simplification function advanced 2014-09-02 14:33:47 +02:00
polylines_triangulation.cpp Introduce CGAL::Default for the TDS of constrained triangulations 2016-03-23 10:27:39 +01:00
print_cropped_voronoi.cpp add an example to print cropped edges of a Voronoi diagram and 2011-12-13 17:22:22 +00:00
regular.cpp * Add draw examples in the 5 concerned packages (Polyhedron, Surface_mesh, T2, T3, LCC) 2018-05-29 11:11:49 +02:00
terrain.cpp add constructor from range for 2D Delaunay and Regular triangulation 2012-12-19 17:10:57 +01:00
terrain_with_info.cpp Triangulation_2: Add an example that combines Projection_traits and vertex_with_info 2017-01-23 09:18:39 +01:00
triangulation_prog1.cpp
voronoi.cpp

README

triangulation_prog1:
The following program creates a triangulation of 2D points using 
a default kernel of CGAL  as geometric traits and the
default instantiation 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 have some additional property
like e.g. a color stored in the faces or vertices
of the triangulation.

adding_handles
Illustrates how the user can derive and plug in his own vertex_base 
or face_base when he would like to have  additional
handles to other faces and vertices stored in the faces or vertices.


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 a grid of 5x5 constraints into a constrained Delaunay triangulation
supporting intersecting constraints and count the number
of constrained edges in the resulting triangulation.

constrained_plus
Same has above, but the  constrained Delaunay triangulation
uses an exact number types and a constraint hierarchy.

hierarchy
A standard use of a  triangulation hierarchy
to enhance the efficiency
of a Delaunay triangulation.
The program outputs the number of vertices
at the different levels of the hierarchy

constrained_hierarchy_plus
The program shows how to use
a triangulation hierarchy in conjunction with a Constrained 
triangulation plus.

info_insert_with_pair_iterator_2
info_insert_with_pair_iterator_regular_2
info_insert_with_zip_iterator_2
info_insert_with_transform_iterator_2
Show how to insert points and info using the insert by range function
with different methods.