mirror of https://github.com/CGAL/cgal
*** empty log message ***
This commit is contained in:
parent
7099f9450c
commit
35c73217e8
|
|
@ -10,5 +10,7 @@
|
|||
ALL : Fixed file headers.
|
||||
ALL : minimum_enclosing_* -> min_*
|
||||
DOCS: Changed to new manual style.
|
||||
DOCS: Added some indexing commands for terms.
|
||||
DOCS: Some minor fixes in documentation.
|
||||
DOCS: Fixed \ccPureGlobalScope.
|
||||
ALL : Removed superfluous window include.
|
||||
|
|
|
|||
|
|
@ -109,28 +109,17 @@ struct Min_quadrilateral_default_traits_2 {
|
|||
typedef Min_strip_2< R > Strip_2;
|
||||
|
||||
// Predicates
|
||||
typedef std::equal_to< Point_2 > Equal_2;
|
||||
struct Less_x_2
|
||||
: public CGAL_STD::binary_function< Point_2, Point_2, bool >
|
||||
{
|
||||
bool
|
||||
operator()(const Point_2& p, const Point_2& q) const
|
||||
{ return p.x() < q.x(); }
|
||||
};
|
||||
struct Less_y_2
|
||||
: public CGAL_STD::binary_function< Point_2, Point_2, bool >
|
||||
{
|
||||
bool
|
||||
operator()(const Point_2& p, const Point_2& q) const
|
||||
{ return p.y() < q.y(); }
|
||||
};
|
||||
struct Greater_x_2
|
||||
: public CGAL_STD::binary_function< Point_2, Point_2, bool >
|
||||
{
|
||||
bool
|
||||
operator()(const Point_2& p, const Point_2& q) const
|
||||
{ return p.x() > q.x(); }
|
||||
};
|
||||
typedef typename R::Equal_2 Equal_2;
|
||||
// std::equal_to< Point_2 > Equal_2;
|
||||
typedef typename R::Less_x_2 Less_x_2;
|
||||
typedef typename R::Less_y_2 Less_y_2;
|
||||
struct Greater_x_2
|
||||
: public CGAL_STD::binary_function< Point_2, Point_2, bool >
|
||||
{
|
||||
bool
|
||||
operator()(const Point_2& p, const Point_2& q) const
|
||||
{ return p.x() > q.x(); }
|
||||
};
|
||||
struct Greater_y_2
|
||||
: public CGAL_STD::binary_function< Point_2, Point_2, bool >
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,6 +3,13 @@
|
|||
//=====================================================================
|
||||
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// revision 1.11
|
||||
//---------------------------------------------------------------------
|
||||
|
||||
DOCS: Added some indexing commands for terms.
|
||||
DOCS: Some minor fixes in documentation.
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// revision 1.10
|
||||
//---------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
1.10 (13 September 2000)
|
||||
1.11 (15 September 2000)
|
||||
maintainer: Michael Hoffmann <hoffmann@inf.ethz.ch>
|
||||
|
|
|
|||
Loading…
Reference in New Issue