|
Visual Computing Library
devel
|
Public Types | |
| using | difference_type = ptrdiff_t |
| using | iterator_category = std::forward_iterator_tag |
| using | pointer = const Point< uint, N > * |
| using | reference = const Point< uint, N > & |
| using | value_type = Point< uint, N > |
Public Member Functions | |
| CellIterator (const Point< uint, N > &first, const Point< uint, N > &end) | |
| bool | operator!= (const CellIterator &oi) const |
| reference | operator* () const |
| CellIterator | operator++ () |
| CellIterator | operator++ (int) |
| pointer | operator-> () const |
| bool | operator== (const CellIterator &oi) const |
Private Attributes | |
| Point< uint, N > | mEnd |
| Point< uint, N > | mFirst |
| Point< uint, N > | mIt |