mirror of https://github.com/CGAL/cgal
Circle_3 is on the kernel now, dont need an equal_3 operator
This commit is contained in:
parent
cfaee22bee
commit
86b6640fc4
|
|
@ -157,13 +157,12 @@ template < class SK > \
|
||||||
const Line_3 &l1) const
|
const Line_3 &l1) const
|
||||||
{ return LK_Equal_3()(l0,l1); }
|
{ return LK_Equal_3()(l0,l1); }
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Our Circle_3 dont have orientation
|
|
||||||
result_type
|
result_type
|
||||||
operator() (const Circle_3 &c0,
|
operator() (const Circle_3 &c0,
|
||||||
const Circle_3 &c1) const
|
const Circle_3 &c1) const
|
||||||
{ return equal<SK>(c0, c1); }
|
{ return LK_Equal_3()(c0, c1); }
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
result_type
|
result_type
|
||||||
operator() (const Circular_arc_point_3 &c0,
|
operator() (const Circular_arc_point_3 &c0,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue