diff --git a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp index bdc7e8a1516..a9b28fb2f06 100644 --- a/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp +++ b/Alpha_shapes_2/examples/Alpha_shapes_2/ex_alpha_projection_traits.cpp @@ -1,5 +1,4 @@ -#include -#include +#include #include #include @@ -16,9 +15,8 @@ typedef double coord_type; -typedef CGAL::Simple_cartesian SC; -typedef CGAL::Filtered_kernel FK; -typedef CGAL::Projection_traits_xy_3 K; +typedef CGAL::Exact_predicates_inexact_constructions_kernel Epic; +typedef CGAL::Projection_traits_xy_3 K; typedef K::Point_2 Point; typedef K::Segment_2 Segment; @@ -34,10 +32,10 @@ typedef K::Segment_2 Segment; namespace CGAL { template < class K2, class C > -class Cartesian_converter +class Cartesian_converter { public: - typedef CGAL::Projection_traits_xy_3 Source_kernel; + typedef CGAL::Projection_traits_xy_3 Source_kernel; typedef K2 Target_kernel; typedef C Number_type_converter;