#include <OpenMesh/Mesh/Iterators/CirculatorsT.hh>
Public Types | |
| typedef std::ptrdiff_t | difference_type |
| typedef Mesh::HalfedgeHandle | HalfedgeHandle |
| typedef std::bidirectional_iterator_tag | iterator_category |
| typedef const Mesh * | mesh_ptr |
| typedef const Mesh & | mesh_ref |
| typedef const Mesh::Edge * | pointer |
| typedef const Mesh::Edge & | reference |
| typedef Mesh::EdgeHandle | value_handle |
| typedef Mesh::Edge | value_type |
Public Member Functions | |
| ConstVertexEdgeIterT (const VertexEdgeIterT< Mesh > &_rhs) | |
| construct from non-const circulator type | |
| ConstVertexEdgeIterT (const ConstVertexEdgeIterT &_rhs) | |
| Copy constructor. | |
| ConstVertexEdgeIterT (mesh_ref _mesh, HalfedgeHandle _heh, bool _end=false) | |
| Construct with mesh and start halfedge. | |
| ConstVertexEdgeIterT (mesh_ref _mesh, typename Mesh::VertexHandle _start, bool _end=false) | |
| Construct with mesh and a typename Mesh::VertexHandle. | |
| ConstVertexEdgeIterT () | |
| Default constructor. | |
| HalfedgeHandle | current_halfedge_handle () const |
| Mesh::EdgeHandle | handle () const |
| Return the handle of the current target. | |
| operator bool () const | |
| operator typename Mesh::EdgeHandle () const | |
| Cast to the handle of the current target. | |
| bool | operator!= (const ConstVertexEdgeIterT &_rhs) const |
| Not equal ? | |
| reference | operator* () const |
| Return a reference to the current target. | |
| ConstVertexEdgeIterT & | operator++ () |
| Pre-Increment (next cw target). | |
| ConstVertexEdgeIterT & | operator-- () |
| Pre-Decrement (next ccw target). | |
| pointer | operator-> () const |
| Return a pointer to the current target. | |
| ConstVertexEdgeIterT & | operator= (const VertexEdgeIterT< Mesh > &_rhs) |
| assign from non-const circulator | |
| ConstVertexEdgeIterT & | operator= (const ConstVertexEdgeIterT< Mesh > &_rhs) |
| Assignment operator. | |
| bool | operator== (const ConstVertexEdgeIterT &_rhs) const |
| Equal ? | |
Protected Attributes | |
| HalfedgeHandle | heh_ |
| int | lap_counter_ |
| mesh_ptr | mesh_ |
| HalfedgeHandle | start_ |
Circulator.
Definition at line 1458 of file CirculatorsT.hh.
| typedef std::ptrdiff_t OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::difference_type |
Definition at line 1472 of file CirculatorsT.hh.
| typedef Mesh::HalfedgeHandle OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::HalfedgeHandle |
Definition at line 1465 of file CirculatorsT.hh.
| typedef std::bidirectional_iterator_tag OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::iterator_category |
Definition at line 1471 of file CirculatorsT.hh.
| typedef const Mesh* OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::mesh_ptr |
Definition at line 1474 of file CirculatorsT.hh.
| typedef const Mesh& OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::mesh_ref |
Definition at line 1473 of file CirculatorsT.hh.
| typedef const Mesh::Edge* OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::pointer |
Definition at line 1476 of file CirculatorsT.hh.
| typedef const Mesh::Edge& OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::reference |
Definition at line 1475 of file CirculatorsT.hh.
| typedef Mesh::EdgeHandle OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::value_handle |
Definition at line 1468 of file CirculatorsT.hh.
| typedef Mesh::Edge OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::value_type |
Definition at line 1467 of file CirculatorsT.hh.
| OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::ConstVertexEdgeIterT | ( | ) | [inline] |
Default constructor.
Definition at line 1489 of file CirculatorsT.hh.
| OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::ConstVertexEdgeIterT | ( | mesh_ref | _mesh, | |
| typename Mesh::VertexHandle | _start, | |||
| bool | _end = false | |||
| ) | [inline] |
Construct with mesh and a typename Mesh::VertexHandle.
Definition at line 1493 of file CirculatorsT.hh.
| OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::ConstVertexEdgeIterT | ( | mesh_ref | _mesh, | |
| HalfedgeHandle | _heh, | |||
| bool | _end = false | |||
| ) | [inline] |
Construct with mesh and start halfedge.
Definition at line 1502 of file CirculatorsT.hh.
| OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::ConstVertexEdgeIterT | ( | const ConstVertexEdgeIterT< Mesh > & | _rhs | ) | [inline] |
Copy constructor.
Definition at line 1511 of file CirculatorsT.hh.
| OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::ConstVertexEdgeIterT | ( | const VertexEdgeIterT< Mesh > & | _rhs | ) | [inline] |
construct from non-const circulator type
Definition at line 1532 of file CirculatorsT.hh.
| HalfedgeHandle OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::current_halfedge_handle | ( | ) | const [inline] |
Get the current halfedge. There are Vertex*Iters and Face*Iters. For both the current state is defined by the current halfedge. This is what this method returns.
Definition at line 1591 of file CirculatorsT.hh.
| Mesh::EdgeHandle OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::handle | ( | ) | const [inline] |
Return the handle of the current target.
Definition at line 1597 of file CirculatorsT.hh.
| OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator bool | ( | ) | const [inline] |
Returns whether the circulator is still valid. After one complete round around a vertex/face the circulator becomes invalid, i.e. this function will return false. Nevertheless you can continue circulating. This method just tells you whether you have completed the first round.
Definition at line 1630 of file CirculatorsT.hh.
| OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator typename Mesh::EdgeHandle | ( | ) | const [inline] |
Cast to the handle of the current target.
Definition at line 1604 of file CirculatorsT.hh.
| bool OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator!= | ( | const ConstVertexEdgeIterT< Mesh > & | _rhs | ) | const [inline] |
Not equal ?
Definition at line 1564 of file CirculatorsT.hh.
| reference OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator* | ( | ) | const [inline] |
Return a reference to the current target.
Definition at line 1611 of file CirculatorsT.hh.
| ConstVertexEdgeIterT& OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator++ | ( | ) | [inline] |
Pre-Increment (next cw target).
Definition at line 1570 of file CirculatorsT.hh.
| ConstVertexEdgeIterT& OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator-- | ( | ) | [inline] |
Pre-Decrement (next ccw target).
Definition at line 1579 of file CirculatorsT.hh.
| pointer OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator-> | ( | ) | const [inline] |
Return a pointer to the current target.
Definition at line 1618 of file CirculatorsT.hh.
| ConstVertexEdgeIterT& OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator= | ( | const VertexEdgeIterT< Mesh > & | _rhs | ) | [inline] |
assign from non-const circulator
Definition at line 1541 of file CirculatorsT.hh.
| ConstVertexEdgeIterT& OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator= | ( | const ConstVertexEdgeIterT< Mesh > & | _rhs | ) | [inline] |
Assignment operator.
Definition at line 1520 of file CirculatorsT.hh.
| bool OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::operator== | ( | const ConstVertexEdgeIterT< Mesh > & | _rhs | ) | const [inline] |
Equal ?
Definition at line 1555 of file CirculatorsT.hh.
HalfedgeHandle OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::heh_ [protected] |
Definition at line 1638 of file CirculatorsT.hh.
int OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::lap_counter_ [protected] |
Definition at line 1639 of file CirculatorsT.hh.
mesh_ptr OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::mesh_ [protected] |
Definition at line 1637 of file CirculatorsT.hh.
HalfedgeHandle OpenMesh::Iterators::ConstVertexEdgeIterT< Mesh >::start_ [protected] |
Definition at line 1638 of file CirculatorsT.hh.