From 07aeaa3584143dfd48ffc5d576f8376ec72b94dd Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Mon, 6 Mar 2017 15:28:03 +0100 Subject: [PATCH] fix one more Bare_point --- Mesh_3/include/CGAL/Mesh_3/Refine_facets_3.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mesh_3/include/CGAL/Mesh_3/Refine_facets_3.h b/Mesh_3/include/CGAL/Mesh_3/Refine_facets_3.h index 45bda6b2bc5..bf61ffe83eb 100644 --- a/Mesh_3/include/CGAL/Mesh_3/Refine_facets_3.h +++ b/Mesh_3/include/CGAL/Mesh_3/Refine_facets_3.h @@ -277,7 +277,7 @@ class Refine_facets_3_base typedef typename Gt::Ray_3 Ray_3; typedef typename Gt::Line_3 Line_3; protected: - typedef typename Gt::Bare_point Bare_point; + typedef typename Tr::Bare_point Bare_point; public: Refine_facets_3_base(Tr& tr, Complex3InTriangulation3& c3t3, @@ -763,6 +763,7 @@ public: typedef Container_ Container; // Because we need it in Mesher_level typedef typename Container::Element Container_element; typedef typename Tr::Point Point;//Weighted_point + typedef typename Tr::Bare_point Bare_point; typedef typename Tr::Facet Facet; typedef typename Tr::Vertex_handle Vertex_handle; typedef typename Triangulation_mesher_level_traits_3::Zone Zone; @@ -796,7 +797,7 @@ public: int number_of_bad_elements_impl(); - Point circumcenter_impl(const Facet& facet) const + Bare_point circumcenter_impl(const Facet& facet) const { return get_facet_surface_center(facet); } @@ -875,7 +876,6 @@ private: typedef typename MeshDomain::Surface_patch_index Surface_patch_index; typedef typename MeshDomain::Index Index; typedef typename Tr::Geom_traits Gt; - typedef typename Gt::Bare_point Bare_point; typedef typename Gt::Ray_3 Ray_3; private: