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

Method Initialize

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

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

Source from the content-addressed store, hash-verified

36
37//------------------------------------------------------------------------------
38void vtkInEdgeIterator::Initialize(vtkGraph* graph, vtkIdType v)
39{
40 this->SetGraph(graph);
41 this->Vertex = v;
42 vtkIdType nedges;
43 this->Graph->GetInEdges(this->Vertex, this->Current, nedges);
44 this->End = this->Current + nedges;
45}
46
47//------------------------------------------------------------------------------
48vtkGraphEdge* vtkInEdgeIterator::NextGraphEdge()

Callers

nothing calls this directly

Calls 2

SetGraphMethod · 0.45
GetInEdgesMethod · 0.45

Tested by

no test coverage detected