mirror of https://github.com/CGAL/cgal
- Remove side_of_oriented_line(Line_2, Point_2) : it's not documented,
only in Cartesian, and available as Line_2::oriented_side(Point_2).
This commit is contained in:
parent
7c1cca8e84
commit
6ecdffd367
|
|
@ -1,6 +1,8 @@
|
|||
22 Feb 2004 Sylvain Pion
|
||||
- Move compare_slopes(Segment_2, Segment_2) to the new scheme.
|
||||
- Move compare_slopes(Line_2, Line_2) to the new scheme.
|
||||
- Remove side_of_oriented_line(Line_2, Point_2) : it's not documented,
|
||||
only in Cartesian, and available as Line_2::oriented_side(Point_2).
|
||||
|
||||
21 Feb 2004 Sylvain Pion
|
||||
- Move internal predicates(p,q,K) to CGALi.
|
||||
|
|
|
|||
|
|
@ -38,15 +38,6 @@ equal_line(const LineC2<K> &l1, const LineC2<K> &l2)
|
|||
return equal_lineC2(l1.a(), l1.b(), l1.c(), l2.a(), l2.b(), l2.c());
|
||||
}
|
||||
|
||||
template < class K >
|
||||
inline
|
||||
Oriented_side
|
||||
side_of_oriented_line(const LineC2<K> &l,
|
||||
const PointC2<K> &p)
|
||||
{
|
||||
return side_of_oriented_lineC2(l.a(), l.b(), l.c(), p.x(), p.y());
|
||||
}
|
||||
|
||||
CGAL_END_NAMESPACE
|
||||
|
||||
#endif // CGAL_CARTESIAN_PREDICATES_ON_LINES_2_H
|
||||
|
|
|
|||
Loading…
Reference in New Issue