*** empty log message ***

This commit is contained in:
Michael Hoffmann 2000-09-15 07:41:23 +00:00
parent 7099f9450c
commit 35c73217e8
4 changed files with 21 additions and 23 deletions

View File

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

View File

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

View File

@ -3,6 +3,13 @@
//=====================================================================
//---------------------------------------------------------------------
// revision 1.11
//---------------------------------------------------------------------
DOCS: Added some indexing commands for terms.
DOCS: Some minor fixes in documentation.
//---------------------------------------------------------------------
// revision 1.10
//---------------------------------------------------------------------

View File

@ -1,2 +1,2 @@
1.10 (13 September 2000)
1.11 (15 September 2000)
maintainer: Michael Hoffmann <hoffmann@inf.ethz.ch>