------------------------------------------------------------------------------ Description: Move iterator to next position. (loop progression). \pre not_off: !IsAtEnd()
| 62 | // Move iterator to next position. (loop progression). |
| 63 | // \pre not_off: !IsAtEnd() |
| 64 | void vtkBridgePointIteratorOnDataSet::Next() |
| 65 | { |
| 66 | assert("pre: not_off" && !IsAtEnd()); |
| 67 | this->Id++; |
| 68 | } |
| 69 | |
| 70 | //------------------------------------------------------------------------------ |
| 71 | // Description: |