From b67992418d4e53b41297d920875e91af8460de60 Mon Sep 17 00:00:00 2001 From: Shlomo Golubev Date: Thu, 9 Aug 2007 15:52:17 +0000 Subject: [PATCH] work arounds for Envelope_3 --- Arrangement_2/include/CGAL/Arr_accessor.h | 14 -------------- Arrangement_2/include/CGAL/Arrangement_2.h | 18 ------------------ 2 files changed, 32 deletions(-) diff --git a/Arrangement_2/include/CGAL/Arr_accessor.h b/Arrangement_2/include/CGAL/Arr_accessor.h index 2d747a23083..b9236b52bb3 100644 --- a/Arrangement_2/include/CGAL/Arr_accessor.h +++ b/Arrangement_2/include/CGAL/Arr_accessor.h @@ -76,20 +76,6 @@ private: public: - std::pair - place_and_set_curve_end (Face_handle f, - const X_monotone_curve_2& cv, Curve_end ind, - Boundary_type bound_x, Boundary_type bound_y) - { - DHalfedge *pred; - DVertex *v = p_arr->_place_and_set_curve_end (p_arr->_face (f), cv, ind, bound_x, bound_y, &pred); - if (pred == NULL) - // No predecessor halfedge, return just the vertex: - return (std::make_pair (p_arr->_handle_for(v), Halfedge_handle())); - // Return a pair of the vertex and predecessor halfedge: - return (std::make_pair (p_arr->_handle_for(v), p_arr->_handle_for(pred))); - } - /*! Constructor with an associated arrangement. */ Arr_accessor (Arrangement_2& arr) : p_arr (&arr) diff --git a/Arrangement_2/include/CGAL/Arrangement_2.h b/Arrangement_2/include/CGAL/Arrangement_2.h index 8d487c8dff8..a302dec9ce3 100644 --- a/Arrangement_2/include/CGAL/Arrangement_2.h +++ b/Arrangement_2/include/CGAL/Arrangement_2.h @@ -84,24 +84,6 @@ protected: typedef Arr_traits_basic_adaptor_2 Traits_adaptor_2; -public: - - Traits_adaptor_2 * geom_traits; - - /*! Access the geometry-traits object (non-const version). */ - inline Traits_2* geometry_traits () - { - return (geom_traits); - } - - /*! Access the geometry-traits object (const version). */ - inline const Traits_2* geometry_traits () const - { - return (geom_traits); - } - -protected: - friend class Arr_observer; friend class Arr_accessor;