------------------------------------------------------------------------------
| 2144 | |
| 2145 | //------------------------------------------------------------------------------ |
| 2146 | void vtkReebGraph::Implementation::GetNodeUpArcIds(vtkIdType nodeId, vtkIdList* arcIdList) |
| 2147 | { |
| 2148 | vtkIdType i = 0; |
| 2149 | |
| 2150 | if (!arcIdList) |
| 2151 | return; |
| 2152 | |
| 2153 | for (vtkIdType arcId = this->GetNode(nodeId)->ArcUpId; arcId; |
| 2154 | arcId = this->GetArc(arcId)->ArcDwId0) |
| 2155 | { |
| 2156 | arcIdList->InsertId(i, arcId); |
| 2157 | i++; |
| 2158 | } |
| 2159 | } |
| 2160 | |
| 2161 | //------------------------------------------------------------------------------ |
| 2162 | void vtkReebGraph::Implementation::FindLoops() |
no test coverage detected