|
OpenMesh
|

Public Member Functions | |
| GenericIteratorT () | |
| Default constructor. | |
| GenericIteratorT (mesh_ref _mesh, value_handle _hnd, bool _skip=false) | |
| Construct with mesh and a target handle. | |
| reference | operator* () const |
| Standard dereferencing operator. | |
| pointer | operator-> () const |
| Standard pointer operator. | |
| value_handle | handle () const |
| Get the handle of the item the iterator refers to. | |
| operator value_handle () const | |
| Cast to the handle of the item the iterator refers to. | |
| 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? | |
| GenericIteratorT & | operator++ () |
| Standard pre-increment operator. | |
| GenericIteratorT & | operator-- () |
| Standard pre-decrement operator. | |
| void | enable_skipping () |
| Turn on skipping: automatically skip deleted/hidden elements. | |
| void | disable_skipping () |
| Turn on skipping: automatically skip deleted/hidden elements. | |
Protected Attributes | |
| mesh_ptr | mesh_ |
| value_handle | hnd_ |
| unsigned int | skip_bits_ |