mirror of https://github.com/CGAL/cgal
fixed error concerning set_radius in traits.
This commit is contained in:
parent
1d7e420d44
commit
00a6865909
|
|
@ -46,8 +46,8 @@ public:
|
|||
typedef typename Base::Solid_faces_iterator Solid_faces_iterator;
|
||||
typedef typename Base::Solid_edges_iterator Solid_edges_iterator;
|
||||
typedef typename Base::Contour_edges_iterator Contour_edges_iterator;
|
||||
typedef typename Base::Face::Vertex_list Vertex_list;
|
||||
typedef typename Vertex_list::iterator Vertex_list_iterator;
|
||||
//typedef typename Base::Vertex_list Vertex_list;
|
||||
//typedef typename Vertex_list::iterator Vertex_list_iterator;
|
||||
|
||||
#ifndef CGAL_CFG_USING_BASE_MEMBER_BUG_2
|
||||
using Base::cw;
|
||||
|
|
|
|||
|
|
@ -225,11 +225,11 @@ public:
|
|||
typedef typename R::Compute_squared_distance_3 Compute_squared_distance_2;
|
||||
typedef typename R::Compare_xyz_3 Compare_xyz_3;
|
||||
|
||||
|
||||
double _radius;
|
||||
|
||||
|
||||
typedef boost::true_type requires_test;
|
||||
void set_radius(double a){}
|
||||
void set_radius(double a){_radius = a;}
|
||||
|
||||
|
||||
Delaunay_triangulation_sphere_traits_2(const Point_2& sphere=Point_2(0,0,0));
|
||||
|
|
|
|||
Loading…
Reference in New Issue