#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 Mesh * | mesh_ptr |
| typedef Mesh & | mesh_ref |
| typedef Mesh::Edge * | pointer |
| typedef Mesh::Edge & | reference |
| typedef Mesh::EdgeHandle | value_handle |
| typedef Mesh::Edge | value_type |
Public Member Functions | |
| 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 VertexEdgeIterT &_rhs) const |
| Not equal ? | |
| reference | operator* () const |
| Return a reference to the current target. | |
| VertexEdgeIterT & | operator++ () |
| Pre-Increment (next cw target). | |
| VertexEdgeIterT & | operator-- () |
| Pre-Decrement (next ccw target). | |
| pointer | operator-> () const |
| Return a pointer to the current target. | |
| VertexEdgeIterT & | operator= (const VertexEdgeIterT< Mesh > &_rhs) |
| Assignment operator. | |
| bool | operator== (const VertexEdgeIterT &_rhs) const |
| Equal ? | |
| VertexEdgeIterT (const VertexEdgeIterT &_rhs) | |
| Copy constructor. | |
| VertexEdgeIterT (mesh_ref _mesh, HalfedgeHandle _heh, bool _end=false) | |
| Construct with mesh and start halfedge. | |
| VertexEdgeIterT (mesh_ref _mesh, typename Mesh::VertexHandle _start, bool _end=false) | |
| Construct with mesh and a typename Mesh::VertexHandle. | |
| VertexEdgeIterT () | |
| Default constructor. | |
Protected Attributes | |
| HalfedgeHandle | heh_ |
| int | lap_counter_ |
| mesh_ptr | mesh_ |
| HalfedgeHandle | start_ |
Friends | |
| class | ConstVertexEdgeIterT< Mesh > |
Circulator.
Definition at line 1264 of file CirculatorsT.hh.
| typedef std::ptrdiff_t OpenMesh::Iterators::VertexEdgeIterT< Mesh >::difference_type |
Definition at line 1285 of file CirculatorsT.hh.
| typedef Mesh::HalfedgeHandle OpenMesh::Iterators::VertexEdgeIterT< Mesh >::HalfedgeHandle |
Definition at line 1271 of file CirculatorsT.hh.
| typedef std::bidirectional_iterator_tag OpenMesh::Iterators::VertexEdgeIterT< Mesh >::iterator_category |
Definition at line 1284 of file CirculatorsT.hh.
| typedef Mesh* OpenMesh::Iterators::VertexEdgeIterT< Mesh >::mesh_ptr |
Definition at line 1287 of file CirculatorsT.hh.
| typedef Mesh& OpenMesh::Iterators::VertexEdgeIterT< Mesh >::mesh_ref |
Definition at line 1286 of file CirculatorsT.hh.
| typedef Mesh::Edge* OpenMesh::Iterators::VertexEdgeIterT< Mesh >::pointer |
Definition at line 1289 of file CirculatorsT.hh.
| typedef Mesh::Edge& OpenMesh::Iterators::VertexEdgeIterT< Mesh >::reference |
Definition at line 1288 of file CirculatorsT.hh.
| typedef Mesh::EdgeHandle OpenMesh::Iterators::VertexEdgeIterT< Mesh >::value_handle |
Definition at line 1274 of file CirculatorsT.hh.
| typedef Mesh::Edge OpenMesh::Iterators::VertexEdgeIterT< Mesh >::value_type |
Definition at line 1273 of file CirculatorsT.hh.
| OpenMesh::Iterators::VertexEdgeIterT< Mesh >::VertexEdgeIterT | ( | ) | [inline] |
Default constructor.
Definition at line 1295 of file CirculatorsT.hh.
| OpenMesh::Iterators::VertexEdgeIterT< Mesh >::VertexEdgeIterT | ( | mesh_ref | _mesh, | |
| typename Mesh::VertexHandle | _start, | |||
| bool | _end = false | |||
| ) | [inline] |
Construct with mesh and a typename Mesh::VertexHandle.
Definition at line 1299 of file CirculatorsT.hh.
| OpenMesh::Iterators::VertexEdgeIterT< Mesh >::VertexEdgeIterT | ( | mesh_ref | _mesh, | |
| HalfedgeHandle | _heh, | |||
| bool | _end = false | |||
| ) | [inline] |
Construct with mesh and start halfedge.
Definition at line 1308 of file CirculatorsT.hh.
| OpenMesh::Iterators::VertexEdgeIterT< Mesh >::VertexEdgeIterT | ( | const VertexEdgeIterT< Mesh > & | _rhs | ) | [inline] |
Copy constructor.
Definition at line 1317 of file CirculatorsT.hh.
| HalfedgeHandle OpenMesh::Iterators::VertexEdgeIterT< 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 1397 of file CirculatorsT.hh.
| Mesh::EdgeHandle OpenMesh::Iterators::VertexEdgeIterT< Mesh >::handle | ( | ) | const [inline] |
Return the handle of the current target.
Definition at line 1403 of file CirculatorsT.hh.
| OpenMesh::Iterators::VertexEdgeIterT< 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 1436 of file CirculatorsT.hh.
| OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator typename Mesh::EdgeHandle | ( | ) | const [inline] |
Cast to the handle of the current target.
Definition at line 1410 of file CirculatorsT.hh.
| bool OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator!= | ( | const VertexEdgeIterT< Mesh > & | _rhs | ) | const [inline] |
Not equal ?
Definition at line 1370 of file CirculatorsT.hh.
| reference OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator* | ( | ) | const [inline] |
Return a reference to the current target.
Definition at line 1417 of file CirculatorsT.hh.
| VertexEdgeIterT& OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator++ | ( | ) | [inline] |
Pre-Increment (next cw target).
Definition at line 1376 of file CirculatorsT.hh.
| VertexEdgeIterT& OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator-- | ( | ) | [inline] |
Pre-Decrement (next ccw target).
Definition at line 1385 of file CirculatorsT.hh.
| pointer OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator-> | ( | ) | const [inline] |
Return a pointer to the current target.
Definition at line 1424 of file CirculatorsT.hh.
| VertexEdgeIterT& OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator= | ( | const VertexEdgeIterT< Mesh > & | _rhs | ) | [inline] |
Assignment operator.
Definition at line 1326 of file CirculatorsT.hh.
| bool OpenMesh::Iterators::VertexEdgeIterT< Mesh >::operator== | ( | const VertexEdgeIterT< Mesh > & | _rhs | ) | const [inline] |
Equal ?
Definition at line 1361 of file CirculatorsT.hh.
friend class ConstVertexEdgeIterT< Mesh > [friend] |
Definition at line 1356 of file CirculatorsT.hh.
HalfedgeHandle OpenMesh::Iterators::VertexEdgeIterT< Mesh >::heh_ [protected] |
Definition at line 1444 of file CirculatorsT.hh.
int OpenMesh::Iterators::VertexEdgeIterT< Mesh >::lap_counter_ [protected] |
Definition at line 1445 of file CirculatorsT.hh.
mesh_ptr OpenMesh::Iterators::VertexEdgeIterT< Mesh >::mesh_ [protected] |
Definition at line 1443 of file CirculatorsT.hh.
HalfedgeHandle OpenMesh::Iterators::VertexEdgeIterT< Mesh >::start_ [protected] |
Definition at line 1444 of file CirculatorsT.hh.