56 #include <OpenMesh/Core/Mesh/Status.hh> 57 #include <OpenMesh/Core/Mesh/SmartHandles.hh> 82 template <
class Mesh,
class ValueHandle,
class MemberOwner,
bool (MemberOwner::*PrimitiveStatusMember)() const,
size_t (MemberOwner::*PrimitiveCountMember)() const>
87 typedef ValueHandle value_handle;
88 typedef value_handle value_type;
89 typedef std::bidirectional_iterator_tag iterator_category;
90 typedef std::ptrdiff_t difference_type;
95 typedef const SmartHandle*
pointer;
99 : hnd_(
make_smart(ValueHandle(),nullptr)), skip_bits_(0)
104 : hnd_(
make_smart(_hnd, _mesh)), skip_bits_(0)
124 OM_DEPRECATED(
"This function clutters your code. Use dereferencing operators -> and * instead.")
135 OM_DEPRECATED(
"Implicit casts of iterators are unsafe. Use dereferencing operators -> and * instead.")
136 operator value_handle()
const {
142 return ((hnd_.mesh() == _rhs.hnd_.mesh()) && (hnd_ == _rhs.hnd_));
165 #if ((defined(_MSC_VER) && (_MSC_VER >= 1800)) || __cplusplus > 199711L || defined(__GXX_EXPERIMENTAL_CXX0X__)) && !defined(OPENMESH_VECTOR_LEGACY) 166 template<
class T = value_handle>
167 auto operator+=(
int amount) ->
168 typename std::enable_if<
169 sizeof(decltype(std::declval<T>().__increment(amount))) >= 0,
171 static_assert(std::is_same<T, value_handle>::value,
172 "Template parameter must not deviate from default.");
174 throw std::logic_error(
"Skipping iterators do not support " 176 hnd_.__increment(amount);
180 template<
class T = value_handle>
181 auto operator+(
int rhs) ->
182 typename std::enable_if<
183 sizeof(decltype(std::declval<T>().__increment(rhs),
void (),
int {})) >= 0,
185 static_assert(std::is_same<T, value_handle>::value,
186 "Template parameter must not deviate from default.");
188 throw std::logic_error(
"Skipping iterators do not support " 191 result.hnd_.__increment(rhs);
213 if (hnd_.mesh() && (hnd_.mesh()->*PrimitiveStatusMember)()) {
217 skip_bits_ = status.
bits();
231 assert(hnd_.mesh() && skip_bits_);
232 while ((hnd_.idx() < (signed) (hnd_.mesh()->*PrimitiveCountMember)())
233 && (hnd_.mesh()->status(hnd_).bits() & skip_bits_))
238 assert(hnd_.mesh() && skip_bits_);
239 while ((hnd_.idx() >= 0) && (hnd_.mesh()->status(hnd_).bits() & skip_bits_))
245 unsigned int skip_bits_;
GenericIteratorT & operator--()
Standard pre-decrement operator.
bool operator==(const GenericIteratorT &_rhs) const
Are two iterators equal? Only valid if they refer to the same mesh!
bool operator!=(const GenericIteratorT &_rhs) const
Not equal?
value_handle handle() const
Get the handle of the item the iterator refers to.
pointer operator->() const
Standard pointer operator.
SmartVertexHandle make_smart(VertexHandle _vh, const PolyConnectivity *_mesh)
Creats a SmartVertexHandle from a VertexHandle and a Mesh.
void disable_skipping()
Turn on skipping: automatically skip deleted/hidden elements.
void set_hidden(bool _b)
set hidden
void set_deleted(bool _b)
set deleted
unsigned int bits() const
return whole status
GenericIteratorT operator--(int)
Standard post-decrement operator.
void enable_skipping()
Turn on skipping: automatically skip deleted/hidden elements.
GenericIteratorT operator++(int)
Standard post-increment operator.
GenericIteratorT(mesh_ref _mesh, value_handle _hnd, bool _skip=false)
Construct with mesh and a target handle.
GenericIteratorT()
Default constructor.
reference operator*() const
Standard dereferencing operator.
GenericIteratorT & operator++()
Standard pre-increment operator.