mirror of https://github.com/CGAL/cgal
205 lines
6.5 KiB
C++
205 lines
6.5 KiB
C++
// Copyright (c) 1997 Utrecht University (The Netherlands),
|
|
// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany),
|
|
// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg
|
|
// (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria),
|
|
// and Tel-Aviv University (Israel). All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org); you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public License as
|
|
// published by the Free Software Foundation; version 2.1 of the License.
|
|
// See the file LICENSE.LGPL distributed with CGAL.
|
|
//
|
|
// Licensees holding a valid commercial license may use this file in
|
|
// accordance with the commercial license agreement provided with the software.
|
|
//
|
|
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// $Source$
|
|
// $Revision$ $Date$
|
|
// $Name$
|
|
//
|
|
// Author(s) : Wieger Wesselink, Geert-Jan Giezeman <geert@cs.uu.nl>
|
|
|
|
#ifndef CGAL_POLYGON_2_EDGE_ITERATOR_H
|
|
#define CGAL_POLYGON_2_EDGE_ITERATOR_H
|
|
|
|
#include <iterator>
|
|
#include <CGAL/circulator.h>
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
//-----------------------------------------------------------------------//
|
|
// Polygon_2_edge_iterator
|
|
//-----------------------------------------------------------------------//
|
|
// Ideally the class Polygon_2_edge_iterator would be a nested class of
|
|
// Polygon_2, but this leads to compiler problems with SGI C++ 4.0
|
|
// with the iterator_category() function
|
|
|
|
template <class Traits_, class Container_> class Polygon_2;
|
|
|
|
template <class Segment_>
|
|
class Polygon_2__Segment_ptr
|
|
{
|
|
public:
|
|
typedef Segment_ Segment;
|
|
Polygon_2__Segment_ptr(Segment const &seg) :m_seg(seg){}
|
|
Segment* operator->() {return &m_seg;}
|
|
private:
|
|
Segment m_seg;
|
|
};
|
|
|
|
template <class Traits_, class Container_>
|
|
class Polygon_2_edge_iterator {
|
|
public:
|
|
typedef typename std::iterator_traits<typename Container_::iterator>::iterator_category iterator_category;
|
|
typedef typename Traits_::Segment_2 Segment_2;
|
|
typedef typename Traits_::Segment_2 value_type;
|
|
typedef Container_ Container;
|
|
typedef typename Container_::const_iterator const_iterator;
|
|
typedef typename Container_::difference_type difference_type;
|
|
typedef Segment_2* pointer;
|
|
typedef Segment_2& reference;
|
|
private:
|
|
const Container_* container; // needed for dereferencing the last edge
|
|
const_iterator first_vertex; // points to the first vertex of the edge
|
|
public:
|
|
Polygon_2_edge_iterator() {}
|
|
Polygon_2_edge_iterator(const Container_* c, const_iterator f)
|
|
: container(c), first_vertex(f) {}
|
|
|
|
bool operator==(
|
|
const Polygon_2_edge_iterator<Traits_, Container_>& x) const
|
|
{
|
|
return first_vertex == x.first_vertex;
|
|
}
|
|
|
|
bool operator!=(
|
|
const Polygon_2_edge_iterator<Traits_, Container_>& x) const
|
|
{
|
|
return !(first_vertex == x.first_vertex);
|
|
}
|
|
|
|
Segment_2 operator*() {
|
|
const_iterator second_vertex = first_vertex;
|
|
++second_vertex;
|
|
if (second_vertex == container->end())
|
|
second_vertex = container->begin();
|
|
typename Traits_::Construct_segment_2 construct_segment_2 =
|
|
Traits_().construct_segment_2_object();
|
|
return construct_segment_2(*first_vertex, *second_vertex);
|
|
}
|
|
|
|
Polygon_2__Segment_ptr<Segment_2> operator->()
|
|
{return Polygon_2__Segment_ptr<Segment_2>(operator*());}
|
|
|
|
Polygon_2_edge_iterator<Traits_, Container_>& operator++() {
|
|
++first_vertex;
|
|
return *this;
|
|
}
|
|
|
|
Polygon_2_edge_iterator<Traits_, Container_> operator++(int) {
|
|
Polygon_2_edge_iterator<Traits_, Container_> tmp = *this;
|
|
++*this;
|
|
return tmp;
|
|
}
|
|
|
|
Polygon_2_edge_iterator<Traits_, Container_>& operator--() {
|
|
--first_vertex;
|
|
return *this;
|
|
}
|
|
|
|
Polygon_2_edge_iterator<Traits_, Container_> operator--(int) {
|
|
Polygon_2_edge_iterator<Traits_, Container_> tmp = *this;
|
|
--*this;
|
|
return tmp;
|
|
}
|
|
|
|
// random access iterator requirements
|
|
Polygon_2_edge_iterator<Traits_, Container_>&
|
|
operator+=(difference_type n) {
|
|
first_vertex += n;
|
|
return *this;
|
|
}
|
|
|
|
Polygon_2_edge_iterator<Traits_, Container_>
|
|
operator+(difference_type n) {
|
|
return Polygon_2_edge_iterator<Traits_, Container_>(
|
|
container, first_vertex + n);
|
|
}
|
|
|
|
Polygon_2_edge_iterator<Traits_, Container_>&
|
|
operator-=(difference_type n) {
|
|
return (*this) -= n;
|
|
}
|
|
|
|
Polygon_2_edge_iterator<Traits_, Container_>
|
|
operator-(difference_type n) {
|
|
return Polygon_2_edge_iterator<Traits_, Container_>(
|
|
container, first_vertex - n);
|
|
}
|
|
|
|
difference_type
|
|
operator-(const Polygon_2_edge_iterator<Traits_, Container_>& a) {
|
|
return first_vertex - a.first_vertex;
|
|
}
|
|
|
|
Segment_2 operator[](int n) {
|
|
return *Polygon_2_edge_iterator<Traits_, Container_>(
|
|
container, first_vertex+n);
|
|
}
|
|
|
|
bool operator<(const Polygon_2_edge_iterator<Traits_, Container_>& a)
|
|
{
|
|
return first_vertex < a.first_vertex;
|
|
}
|
|
|
|
bool operator>(const Polygon_2_edge_iterator<Traits_, Container_>& a)
|
|
{
|
|
return first_vertex > a.first_vertex;
|
|
}
|
|
|
|
bool operator<=(const Polygon_2_edge_iterator<Traits_, Container_>& a)
|
|
{
|
|
return first_vertex <= a.first_vertex;
|
|
}
|
|
|
|
bool operator>=(const Polygon_2_edge_iterator<Traits_, Container_>& a)
|
|
{
|
|
return first_vertex >= a.first_vertex;
|
|
}
|
|
|
|
};
|
|
|
|
|
|
template <class Traits_, class Container_>
|
|
typename Container_::difference_type
|
|
distance_type(const Polygon_2_edge_iterator<Traits_,Container_>&)
|
|
{ return Container_::difference_type(); }
|
|
|
|
template <class Traits_, class Container_>
|
|
typename Traits_::Segment_2*
|
|
value_type(const Polygon_2_edge_iterator<Traits_,Container_>&)
|
|
{ return (typename Traits_::Segment_2 *)(0); }
|
|
|
|
|
|
//-----------------------------------------------------------------------//
|
|
// implementation
|
|
//-----------------------------------------------------------------------//
|
|
|
|
//--------------------------------------------------------------------//
|
|
// I don't know how to implement the following function:
|
|
//
|
|
// template <class Traits_, class Container_>
|
|
// inline
|
|
// Polygon_2_edge_iterator<Traits_, Container_>
|
|
// operator+(Container_::difference_type n,
|
|
// Polygon_2_edge_iterator<Traits_, Container_>& a)
|
|
// { return a+n; }
|
|
//--------------------------------------------------------------------//
|
|
|
|
CGAL_END_NAMESPACE
|
|
|
|
#endif
|
|
|