mirror of https://github.com/CGAL/cgal
- Don't filter compare_lexicographically_xyC2().
This commit is contained in:
parent
b2a5c2db79
commit
9ae9c3941f
|
|
@ -1,3 +1,6 @@
|
|||
Version 3.3.8 (October ?? 1999)
|
||||
- Don't filter compare_lexicographically_xyC2() [Sylvain].
|
||||
|
||||
Version 3.3.7 (October 7 1999)
|
||||
- Various predicates and constructions cleanups and speedups [Sylvain].
|
||||
- Changed vector to to_vector in Direction
|
||||
|
|
|
|||
|
|
@ -177,6 +177,7 @@ compare_deltax_deltayC2(const FT &px, const FT &qx,
|
|||
return CGAL::compare(abs(px-qx), abs(ry-sy));
|
||||
}
|
||||
|
||||
//CGAL_NO_FILTER_BEGIN
|
||||
template < class FT >
|
||||
inline
|
||||
Comparison_result
|
||||
|
|
@ -186,6 +187,7 @@ compare_lexicographically_xyC2(const FT &px, const FT &py,
|
|||
Comparison_result c = CGAL::compare(px,qx);
|
||||
return (c != EQUAL) ? c : CGAL::compare(py,qy);
|
||||
}
|
||||
//CGAL_NO_FILTER_END
|
||||
|
||||
template < class FT >
|
||||
inline
|
||||
|
|
|
|||
Loading…
Reference in New Issue