------------------------------------------------------------------------------ Description: Move iterator to next position. (loop progression). \pre not_at_end: !IsAtEnd()
| 128 | // Move iterator to next position. (loop progression). |
| 129 | // \pre not_at_end: !IsAtEnd() |
| 130 | void vtkBridgeCellIteratorOne::Next() |
| 131 | { |
| 132 | assert("pre: not_off" && !this->IsAtEnd()); |
| 133 | |
| 134 | this->cIsAtEnd = 1; |
| 135 | } |
| 136 | |
| 137 | //------------------------------------------------------------------------------ |
| 138 | // Description: |