diff --git a/Apollonius_graph_2/include/CGAL/Apollonius_graph_filtered_traits_2.h b/Apollonius_graph_2/include/CGAL/Apollonius_graph_filtered_traits_2.h index cc522fc8d72..11ece20161c 100644 --- a/Apollonius_graph_2/include/CGAL/Apollonius_graph_filtered_traits_2.h +++ b/Apollonius_graph_2/include/CGAL/Apollonius_graph_filtered_traits_2.h @@ -174,6 +174,7 @@ public: //--------------------------------- typedef typename CK_traits::Construct_object_2 Construct_object_2; typedef typename CK_traits::Assign_2 Assign_2; + typedef typename CK_traits::Construct_point_2 Construct_point_2; // CONSTRUCTIONS //-------------- @@ -338,6 +339,10 @@ public: return Construct_object_2(); } + Construct_point_2 + construct_point_2_object() const { + return Construct_point_2(); + } // CONSTRUCTIONS //-------------- diff --git a/Apollonius_graph_2/include/CGAL/Apollonius_graph_traits_2.h b/Apollonius_graph_2/include/CGAL/Apollonius_graph_traits_2.h index 05bb1102918..4ebf84eddc1 100644 --- a/Apollonius_graph_2/include/CGAL/Apollonius_graph_traits_2.h +++ b/Apollonius_graph_2/include/CGAL/Apollonius_graph_traits_2.h @@ -84,6 +84,8 @@ public: // CONSTRUCTIONS //-------------- + typedef typename Kernel::Construct_point_2 Construct_point_2; + // vertex and dual site typedef CGAL_APOLLONIUS_GRAPH_2_NS::Construct_Apollonius_vertex_2 /* */ Construct_Apollonius_vertex_2; @@ -151,6 +153,10 @@ public: return Construct_object_2(); } + Construct_point_2 + construct_point_2_object() const { + return Construct_point_2(); + } // CONSTRUCTIONS //--------------