------------------------------------------------------------------------------
| 25 | |
| 26 | //------------------------------------------------------------------------------ |
| 27 | void 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 | //------------------------------------------------------------------------------ |
| 35 | vtkInEdgeType vtkUndirectedGraph::GetInEdge(vtkIdType v, vtkIdType i) |
nothing calls this directly
no test coverage detected