- Don't filter compare_lexicographically_xyC2().

This commit is contained in:
Sylvain Pion 1999-10-26 14:36:32 +00:00
parent b2a5c2db79
commit 9ae9c3941f
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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