cgal/Triangulation_2/examples/Triangulation_2
Andreas Fabri 86056be45e Do something with the loop variable 2025-04-11 08:00:31 +01:00
..
data
CMakeLists.txt update our CMake version 3.18...3.31 2025-02-04 14:32:37 +01:00
README
adding_handles.cpp spelling corrections 2022-11-15 13:39:40 +01:00
colored_face.cpp
constrained.cpp T2 and CDT2 draw 2023-12-01 18:02:09 +01:00
constrained_hierarchy_plus.cpp Do something with the loop variable 2025-04-11 08:00:31 +01:00
constrained_plus.cpp
copy_triangulation_2.cpp
draw_triangulation_2.cpp
for_loop_2.cpp
hierarchy.cpp
info_insert_with_pair_iterator_2.cpp
info_insert_with_pair_iterator_regular_2.cpp
info_insert_with_transform_iterator_2.cpp
info_insert_with_zip_iterator_2.cpp
low_dimensional.cpp
polygon_triangulation.cpp T2 and CDT2 draw 2023-12-01 18:02:09 +01:00
polygon_triangulation_graphics_scene_options.h update reuse to v5 2024-11-26 10:14:17 +01:00
polylines_triangulation.cpp major cleanup of Polyline_constraint_hierarchy_2 2025-01-13 17:06:58 +01:00
print_cropped_voronoi.cpp
regular.cpp
segment_soup_to_polylines.cpp fix the failing test 2025-01-22 22:43:59 +01:00
star_conflict_zone.cpp Update Triangulation_2/examples/Triangulation_2/star_conflict_zone.cpp 2022-03-07 15:12:13 +01:00
terr_trian.cin
terr_trian.cpp
terrain.cpp
terrain_with_info.cpp
triangulation_prog1.cpp
triangulation_projection_traits.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.