------------------------------------------------------------------------------
| 2292 | |
| 2293 | //------------------------------------------------------------------------------ |
| 2294 | vtkIdType vtkReebGraph::Implementation::FindUpLabel(vtkIdType nodeId, vtkReebLabelTag label) |
| 2295 | { |
| 2296 | for (vtkIdType arcId = this->GetNode(nodeId)->ArcUpId; arcId; |
| 2297 | arcId = this->GetArc(arcId)->ArcDwId0) |
| 2298 | { |
| 2299 | for (vtkIdType labelId = this->GetArc(arcId)->LabelId0; labelId; |
| 2300 | labelId = this->GetLabel(labelId)->HNext) |
| 2301 | { |
| 2302 | if (this->GetLabel(labelId)->label == label) |
| 2303 | return labelId; |
| 2304 | } |
| 2305 | } |
| 2306 | return 0; |
| 2307 | } |
| 2308 | |
| 2309 | //------------------------------------------------------------------------------ |
| 2310 | void vtkReebGraph::Implementation::ResizeMainArcTable(int newSize) |
no test coverage detected