------------------------------------------------------------------------------ Description: Move iterator to next position. (loop progression). \pre not_at_end: !IsAtEnd()
| 119 | // Move iterator to next position. (loop progression). |
| 120 | // \pre not_at_end: !IsAtEnd() |
| 121 | void vtkBridgeCellIterator::Next() |
| 122 | { |
| 123 | assert("pre: not_off" && !IsAtEnd()); |
| 124 | this->CurrentIterator->Next(); |
| 125 | } |
| 126 | |
| 127 | //------------------------------------------------------------------------------ |
| 128 | // Description: |