MCPcopy Create free account
hub / github.com/Kitware/VTK / Initialize

Method Initialize

Common/DataModel/vtkOutEdgeIterator.cxx:38–45  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

36
37//------------------------------------------------------------------------------
38void 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//------------------------------------------------------------------------------
48vtkGraphEdge* vtkOutEdgeIterator::NextGraphEdge()

Callers

nothing calls this directly

Calls 2

GetOutEdgesMethod · 0.80
SetGraphMethod · 0.45

Tested by

no test coverage detected