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

Method GetInEdges

Common/DataModel/vtkUndirectedGraph.cxx:27–32  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

25
26//------------------------------------------------------------------------------
27void vtkUndirectedGraph::GetInEdges(vtkIdType v, const vtkInEdgeType*& edges, vtkIdType& nedges)
28{
29 const vtkOutEdgeType* outEdges;
30 this->GetOutEdges(v, outEdges, nedges);
31 edges = reinterpret_cast<const vtkInEdgeType*>(outEdges);
32}
33
34//------------------------------------------------------------------------------
35vtkInEdgeType vtkUndirectedGraph::GetInEdge(vtkIdType v, vtkIdType i)

Callers

nothing calls this directly

Calls 1

GetOutEdgesMethod · 0.80

Tested by

no test coverage detected