40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
#ifndef id873715F57B504CCF8227CE03EA28CAFA
|
|
#define id873715F57B504CCF8227CE03EA28CAFA
|
|
|
|
#include <boost/iterator/iterator_facade.hpp>
|
|
#include <iterator>
|
|
#include "primitivetypes.hpp"
|
|
|
|
namespace dk {
|
|
template <typename T, size_t D>
|
|
class TileIterator : public boost::iterator_facade<TileIterator<T, D>, T, boost::biderectional_traversal_tag> {
|
|
friend class boost::iterator_core_access;
|
|
public:
|
|
typedef Vector<CoordinateScalarType, D> coords;
|
|
|
|
TileIterator ( void );
|
|
TileIterator ( const TileIterator& parOther ) = default;
|
|
TileIterator ( const coords& parFrom, const coords& parTo );
|
|
TileIterator ( const coords& parFrom, const coords& parTo, const coords& parAreaFrom, const coords& parAreaTo, const coords& parTotal );
|
|
~TileIterator ( void ) = default;
|
|
|
|
private:
|
|
void increment ( void );
|
|
void decrement ( void );
|
|
void advance ( size_t parAdvance );
|
|
ptrdiff_t distance_to ( const MeshSelectionIterator& parOther );
|
|
bool equal ( const MeshSelectionIterator& parOther ) const;
|
|
T& dereference ( void ) const;
|
|
|
|
coords m_pos;
|
|
coords m_from;
|
|
coords m_to;
|
|
coords m_areafrom;
|
|
coords m_areato;
|
|
coords m_total;
|
|
};
|
|
} //namespace dk
|
|
|
|
#include "implem/tileiterator.inl"
|
|
|
|
#endif
|