------------------------------------------------------------------------------
| 3197 | |
| 3198 | //------------------------------------------------------------------------------ |
| 3199 | vtkIdType vtkReebGraph::Implementation::GetNextNodeId() |
| 3200 | { |
| 3201 | for (vtkIdType nodeId = this->currentNodeId + 1; nodeId < this->MainNodeTable.Size; nodeId++) |
| 3202 | { |
| 3203 | // check if node is cleared |
| 3204 | if (!(this->GetNode(nodeId)->ArcUpId == -2)) |
| 3205 | { |
| 3206 | this->currentNodeId = nodeId; |
| 3207 | return this->currentNodeId; |
| 3208 | } |
| 3209 | } |
| 3210 | |
| 3211 | return this->currentNodeId; |
| 3212 | } |
| 3213 | |
| 3214 | //------------------------------------------------------------------------------ |
| 3215 | vtkIdType vtkReebGraph::Implementation::GetPreviousNodeId() |
no test coverage detected