------------------------------------------------------------------------------
| 3234 | |
| 3235 | //------------------------------------------------------------------------------ |
| 3236 | vtkIdType vtkReebGraph::Implementation::GetNextArcId() |
| 3237 | { |
| 3238 | for (vtkIdType arcId = this->currentArcId + 1; arcId < this->MainArcTable.Size; arcId++) |
| 3239 | { |
| 3240 | // check if arc is cleared |
| 3241 | if (!(this->GetArc(arcId)->LabelId1 == -2)) |
| 3242 | { |
| 3243 | this->currentArcId = arcId; |
| 3244 | return this->currentArcId; |
| 3245 | } |
| 3246 | } |
| 3247 | |
| 3248 | return this->currentArcId; |
| 3249 | } |
| 3250 | |
| 3251 | //------------------------------------------------------------------------------ |
| 3252 | vtkIdType vtkReebGraph::Implementation::GetPreviousArcId() |
no test coverage detected