1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
// Copyright (c) 2000,2001,2008
// Utrecht University (The Netherlands),
// ETH Zurich (Switzerland),
// INRIA Sophia-Antipolis (France),
// Max-Planck-Institute Saarbruecken (Germany),
// and Tel-Aviv University (Israel). All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1/Kernel_d/include/CGAL/Kernel_d/Cartesian_const_iterator_d.h $
// $Id: include/CGAL/Kernel_d/Cartesian_const_iterator_d.h b26b07a1242 $
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Michael Seel, Sylvain Pion
#ifndef CGAL_CARTESIAN_CONST_ITERATOR_D_H
#define CGAL_CARTESIAN_CONST_ITERATOR_D_H
#include <CGAL/basic.h>
#include <CGAL/Quotient.h>
#include <iterator>
namespace CGAL {
// Takes an iterator over RT, and make one over FT, by dividing
// by the last element.
template < typename RT_iterator >
class Cartesian_const_iterator_d
{
typedef typename std::iterator_traits<RT_iterator>::value_type RT;
typedef Cartesian_const_iterator_d self;
public:
typedef std::random_access_iterator_tag iterator_category;
typedef CGAL::Quotient<RT> value_type;
typedef std::ptrdiff_t difference_type;
typedef const value_type* pointer;
typedef const value_type& reference;
Cartesian_const_iterator_d() {}
Cartesian_const_iterator_d(RT_iterator it, RT_iterator w)
: _it(it), _w(w) {}
self& operator++() { ++_it; return *this; }
self operator++(int) { self tmp = *this; ++_it; return tmp; }
self& operator--() { --_it; return *this; }
self operator--(int) { self tmp = *this; --_it; return tmp; }
self& operator+=(difference_type i) { _it+=i; return *this; }
self& operator-=(difference_type i) { _it-=i; return *this; }
self operator+(difference_type i) const
{ self tmp=*this; return tmp += i; }
self operator-(difference_type i) const
{ self tmp=*this; return tmp -= i; }
difference_type operator-(self x) const { return _it-x._it; }
value_type operator*() const { return value_type(*_it,*_w); }
value_type operator[](difference_type i) const { return *(*this + i); }
bool operator==(const self& x) const { return _it==x._it; }
bool operator!=(const self& x) const { return ! (*this==x); }
bool operator<(const self& x) const { return (x - *this) > 0; }
private:
RT_iterator _it, _w;
};
template < typename RT_iterator > inline
Cartesian_const_iterator_d<RT_iterator>
operator+(std::ptrdiff_t i, Cartesian_const_iterator_d<RT_iterator> const& it)
{
return it+i;
}
template < typename RT_iterator > inline
Cartesian_const_iterator_d<RT_iterator>
make_cartesian_const_iterator_begin(RT_iterator begin, RT_iterator w)
{
return Cartesian_const_iterator_d<RT_iterator>(begin, w);
}
template < typename RT_iterator > inline
Cartesian_const_iterator_d<RT_iterator>
make_cartesian_const_iterator_end(RT_iterator w)
{
return Cartesian_const_iterator_d<RT_iterator>(w, w);
}
} //namespace CGAL
#endif // CGAL_CARTESIAN_CONST_ITERATOR_D_H
|