diff --git a/Alpha_shapes_3/examples/Alpha_shapes_3/ex_alpha_shapes_with_hierarchy_3.cpp b/Alpha_shapes_3/examples/Alpha_shapes_3/ex_alpha_shapes_with_hierarchy_3.cpp index 56de6cdd155..aea4917cb51 100644 --- a/Alpha_shapes_3/examples/Alpha_shapes_3/ex_alpha_shapes_with_hierarchy_3.cpp +++ b/Alpha_shapes_3/examples/Alpha_shapes_3/ex_alpha_shapes_with_hierarchy_3.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -9,11 +10,12 @@ typedef CGAL::Exact_predicates_inexact_constructions_kernel K; -typedef CGAL::Alpha_shape_vertex_base_3 Vb; +typedef CGAL::Alpha_shape_euclidean_traits_3 Gt; +typedef CGAL::Alpha_shape_vertex_base_3 Vb; typedef CGAL::Triangulation_hierarchy_vertex_base_3 Vbh; -typedef CGAL::Alpha_shape_cell_base_3 Fb; +typedef CGAL::Alpha_shape_cell_base_3 Fb; typedef CGAL::Triangulation_data_structure_3 Tds; -typedef CGAL::Delaunay_triangulation_3 Delaunay; +typedef CGAL::Delaunay_triangulation_3 Delaunay; typedef CGAL::Triangulation_hierarchy_3 Delaunay_hierarchy; typedef CGAL::Alpha_shape_3 Alpha_shape_3;