------------------------------------------------------------------------------
| 139 | |
| 140 | //------------------------------------------------------------------------------ |
| 141 | void 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 | //------------------------------------------------------------------------------ |
| 158 | void vtkMutableGraphHelper::RemoveEdges(vtkIdTypeArray* edges) |