------------------------------------------------------------------------------
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | vtkGraphEdge* vtkMutableGraphHelper::AddGraphEdge(vtkIdType u, vtkIdType v) |
| 91 | { |
| 92 | if (!this->InternalGraph) |
| 93 | { |
| 94 | return this->GraphEdge; |
| 95 | } |
| 96 | if (this->DirectedGraph) |
| 97 | { |
| 98 | return this->DirectedGraph->AddGraphEdge(u, v); |
| 99 | } |
| 100 | else |
| 101 | { |
| 102 | return this->UndirectedGraph->AddGraphEdge(u, v); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | //------------------------------------------------------------------------------ |
| 107 | void vtkMutableGraphHelper::RemoveVertex(vtkIdType v) |
no outgoing calls
no test coverage detected