------------------------------------------------------------------------------
| 197 | |
| 198 | //------------------------------------------------------------------------------ |
| 199 | vtkGraphEdge* vtkMutableUndirectedGraph::AddGraphEdge(vtkIdType u, vtkIdType v) |
| 200 | { |
| 201 | vtkEdgeType e = this->AddEdge(u, v); |
| 202 | this->GraphEdge->SetSource(e.Source); |
| 203 | this->GraphEdge->SetTarget(e.Target); |
| 204 | this->GraphEdge->SetId(e.Id); |
| 205 | return this->GraphEdge; |
| 206 | } |
| 207 | |
| 208 | //------------------------------------------------------------------------------ |
| 209 | void vtkMutableUndirectedGraph::RemoveVertex(vtkIdType v) |