#include <Mesh.h>
Definition at line 127 of file Mesh.h.
Public Member Functions | |
FaceIterator () | |
FaceIterator (FaceSet *_faces) | |
FaceIterator & | operator++ (void) |
FaceIterator | operator++ (int) |
FaceIterator & | operator-- (void) |
FaceIterator | operator-- (int) |
Face * | face (void) const |
void | reset () |
bool | end (void) |
Private Attributes | |
FaceSet::iterator | fIter |
FaceSet * | facesPtr |
|
Definition at line 132 of file Mesh.h. 00132 { 00133 facesPtr = NULL; 00134 }
|
|
Definition at line 136 of file Mesh.h.
|
|
Definition at line 159 of file Mesh.h.
|
|
Definition at line 155 of file Mesh.h. 00155 { return *fIter; }
|
|
Definition at line 144 of file Mesh.h. 00144 { 00145 FaceIterator r = *this; ++*this; return r; 00146 }
|
|
Definition at line 140 of file Mesh.h. 00140 { 00141 fIter++; 00142 return *this; 00143 }
|
|
Definition at line 151 of file Mesh.h. 00151 { 00152 FaceIterator r = *this; --*this; return r; 00153 }
|
|
Definition at line 147 of file Mesh.h. 00147 { 00148 fIter--; 00149 return *this; 00150 }
|
|
Definition at line 158 of file Mesh.h.
|
|
|
|
|