Subversion Repositories gelsvn

Rev

Rev 512 | Rev 515 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 512 Rev 513
Line 142... Line 142...
142
 
142
 
143
    inline bool VertexIDIterator::operator ==(const VertexIDIterator& other) const
143
    inline bool VertexIDIterator::operator ==(const VertexIDIterator& other) const
144
    { return ck == other.ck && id == other.id; }
144
    { return ck == other.ck && id == other.id; }
145
 
145
 
146
    inline bool VertexIDIterator::operator !=(const VertexIDIterator& other) const
146
    inline bool VertexIDIterator::operator !=(const VertexIDIterator& other) const
147
    { return ck == other.ck && id == other.id; }
147
    { return ck != other.ck || id != other.id; }
148
 
148
 
149
 
149
 
150
    inline VertexID VertexIDIterator::operator *()
150
    inline VertexID VertexIDIterator::operator *()
151
    { return id; }
151
    { return id; }
152
 
152
 
Line 182... Line 182...
182
 
182
 
183
    inline bool FaceIDIterator::operator ==(const FaceIDIterator& other) const
183
    inline bool FaceIDIterator::operator ==(const FaceIDIterator& other) const
184
    { return ck == other.ck && id == other.id; }
184
    { return ck == other.ck && id == other.id; }
185
 
185
 
186
    inline bool FaceIDIterator::operator !=(const FaceIDIterator& other) const
186
    inline bool FaceIDIterator::operator !=(const FaceIDIterator& other) const
187
    { return ck == other.ck && id == other.id; }
187
    { return ck != other.ck || id != other.id; }
188
 
188
 
189
 
189
 
190
    inline FaceID FaceIDIterator::operator *()
190
    inline FaceID FaceIDIterator::operator *()
191
    { return id; }
191
    { return id; }
192
 
192
 
Line 221... Line 221...
221
 
221
 
222
    inline bool HalfEdgeIDIterator::operator ==(const HalfEdgeIDIterator& other) const
222
    inline bool HalfEdgeIDIterator::operator ==(const HalfEdgeIDIterator& other) const
223
    { return ck == other.ck && id == other.id; }
223
    { return ck == other.ck && id == other.id; }
224
 
224
 
225
    inline bool HalfEdgeIDIterator::operator !=(const HalfEdgeIDIterator& other) const
225
    inline bool HalfEdgeIDIterator::operator !=(const HalfEdgeIDIterator& other) const
226
    { return ck == other.ck && id == other.id; }
226
    { return ck != other.ck || id != other.id; }
227
 
227
 
228
 
228
 
229
    inline HalfEdgeID HalfEdgeIDIterator::operator *()
229
    inline HalfEdgeID HalfEdgeIDIterator::operator *()
230
    { return id; }
230
    { return id; }
231
 
231