From db9f968ea9f7e406537af89a84c64dc96be2e716 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Tue, 31 Jul 2012 13:30:29 +0000 Subject: [PATCH] r70321 from Mesh_3-experimental-GF Change inexact_locate and inexact_orientation from protected to public (needed for the commit in Mesh_3 concerning inexact_locate in Mesh_sizing_field) --- Triangulation_3/include/CGAL/Triangulation_3.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Triangulation_3/include/CGAL/Triangulation_3.h b/Triangulation_3/include/CGAL/Triangulation_3.h index c52ea6c70c5..922d23c22d0 100644 --- a/Triangulation_3/include/CGAL/Triangulation_3.h +++ b/Triangulation_3/include/CGAL/Triangulation_3.h @@ -512,12 +512,12 @@ public: # endif // no CGAL_T3_STRUCTURAL_FILTERING_MAX_VISITED_CELLS -protected: +public: Cell_handle inexact_locate(const Point& p, Cell_handle start, int max_num_cells = CGAL_T3_STRUCTURAL_FILTERING_MAX_VISITED_CELLS) const; - +protected: Cell_handle exact_locate(const Point& p, Locate_type& lt, @@ -542,6 +542,7 @@ protected: return exact_locate(p, lt, li, lj, start); } +public: Orientation inexact_orientation(const Point &p, const Point &q, const Point &r, const Point &s) const