------------------------------------------------------------------------------
| 36 | |
| 37 | //------------------------------------------------------------------------------ |
| 38 | void vtkOutEdgeIterator::Initialize(vtkGraph* graph, vtkIdType v) |
| 39 | { |
| 40 | this->SetGraph(graph); |
| 41 | this->Vertex = v; |
| 42 | vtkIdType nedges; |
| 43 | this->Graph->GetOutEdges(this->Vertex, this->Current, nedges); |
| 44 | this->End = this->Current + nedges; |
| 45 | } |
| 46 | |
| 47 | //------------------------------------------------------------------------------ |
| 48 | vtkGraphEdge* vtkOutEdgeIterator::NextGraphEdge() |
nothing calls this directly
no test coverage detected