Document skipping iterators

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@424 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2011-10-10 12:24:43 +00:00
parent fe2d71e15b
commit ae4cbf0d46
2 changed files with 34 additions and 13 deletions

View File

@@ -2132,9 +2132,9 @@ class FaceVertexIterT
/// Equal ?
bool operator==(const FaceVertexIterT& _rhs) const {
return ((mesh_ == _rhs.mesh_) &&
(start_ == _rhs.start_) &&
(heh_ == _rhs.heh_) &&
(lap_counter_ == _rhs.lap_counter_));
(start_ == _rhs.start_) &&
(heh_ == _rhs.heh_) &&
(lap_counter_ == _rhs.lap_counter_));
}