remove unused parameter

This commit is contained in:
Andreas Fabri 2007-04-06 08:56:24 +00:00
parent ad155d4f35
commit 279d5d408b
1 changed files with 4 additions and 4 deletions

View File

@ -240,22 +240,22 @@ public:
void assert_equal_marks(SHalfedge_handle e1, SHalfedge_handle e2) const void assert_equal_marks(SHalfedge_handle e1, SHalfedge_handle e2) const
{ CGAL_assertion(e1->mark()==e2->mark()); } { CGAL_assertion(e1->mark()==e2->mark()); }
Sphere_segment segment(const Explorer* N, Sphere_segment segment(const Explorer* ,
SHalfedge_const_handle e) const SHalfedge_const_handle e) const
{ return Sphere_segment( { return Sphere_segment(
e->source()->point(),e->twin()->source()->point(),e->circle()); } e->source()->point(),e->twin()->source()->point(),e->circle()); }
Sphere_segment trivial_segment(const Explorer* N, Sphere_segment trivial_segment(const Explorer* ,
SVertex_const_handle v) const SVertex_const_handle v) const
{ Sphere_point p = v->point(); { Sphere_point p = v->point();
return Sphere_segment(p,p); } return Sphere_segment(p,p); }
Seg_pair two_segments(const Explorer* N, Seg_pair two_segments(const Explorer* ,
SHalfedge_const_handle e) const SHalfedge_const_handle e) const
// we know that source(e)==target(e) // we know that source(e)==target(e)
{ return e->circle().split_at(e->source()->point()); } { return e->circle().split_at(e->source()->point()); }
Seg_pair two_segments(const Explorer* N, Seg_pair two_segments(const Explorer* ,
SHalfloop_const_handle l) const SHalfloop_const_handle l) const
{ return l->circle().split_at_xy_plane(); } { return l->circle().split_at_xy_plane(); }