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

Method RemoveEdge

Infovis/Core/vtkMutableGraphHelper.cxx:141–155  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

139
140//------------------------------------------------------------------------------
141void vtkMutableGraphHelper::RemoveEdge(vtkIdType e)
142{
143 if (!this->InternalGraph)
144 {
145 return;
146 }
147 if (this->DirectedGraph)
148 {
149 this->DirectedGraph->RemoveEdge(e);
150 }
151 else
152 {
153 this->UndirectedGraph->RemoveEdge(e);
154 }
155}
156
157//------------------------------------------------------------------------------
158void vtkMutableGraphHelper::RemoveEdges(vtkIdTypeArray* edges)

Callers 1

remove_edgeFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected