Added += operator to mesh iterators.

This commit is contained in:
Hans-Christian Ebke
2015-12-14 17:32:25 +01:00
parent b1bbd9975f
commit d584941675
2 changed files with 33 additions and 0 deletions

View File

@@ -98,6 +98,8 @@ public:
void __increment() { ++idx_; }
void __decrement() { --idx_; }
void __increment(int amount) { idx_ += amount; }
void __decrement(int amount) { idx_ += amount; }
private: