|
Field3D
|
#include <Field.h>
Public Member Functions | |
| iterator (WritableField< Data_T > &field, const Box3i &window, const V3i ¤tPos) | |
| template<class Iter_T> | |
| bool | operator!= (const Iter_T &rhs) const |
| Data_T & | operator* () const |
| const iterator & | operator++ () |
| template<class Iter_T> | |
| bool | operator== (const Iter_T &rhs) const |
Public Attributes | |
| int | x |
| Current position. | |
| int | y |
| int | z |
Private Attributes | |
| WritableField< Data_T > & | m_field |
| Reference to field being iterated over. | |
| Box3i | m_window |
| Window to traverse. | |
|
inline |
Definition at line 717 of file Field.h.
References m_field, m_window, x, y, and z.
Referenced by operator++().
|
inline |
|
inline |
|
inline |
|
inline |
| int WritableField< Data_T >::iterator::x |
Current position.
Definition at line 762 of file Field.h.
Referenced by iterator(), operator!=(), operator*(), operator++(), and operator==().
| int WritableField< Data_T >::iterator::y |
Definition at line 762 of file Field.h.
Referenced by iterator(), operator!=(), operator*(), operator++(), and operator==().
| int WritableField< Data_T >::iterator::z |
Definition at line 762 of file Field.h.
Referenced by iterator(), operator!=(), operator*(), operator++(), and operator==().
|
private |
Window to traverse.
Definition at line 769 of file Field.h.
Referenced by iterator(), and operator++().
|
private |
Reference to field being iterated over.
Definition at line 771 of file Field.h.
Referenced by iterator(), and operator*().