------------------------------------------------------------------------------
| 198 | |
| 199 | //------------------------------------------------------------------------------ |
| 200 | vtkIdType vtkMutableDirectedGraph::AddChild(vtkIdType parent, vtkVariantArray* propertyArr /* = 0*/) |
| 201 | { |
| 202 | vtkIdType v = this->AddVertex(); |
| 203 | this->AddEdge(parent, v, propertyArr); |
| 204 | return v; |
| 205 | } |
| 206 | |
| 207 | //------------------------------------------------------------------------------ |
| 208 | void vtkMutableDirectedGraph::RemoveVertex(vtkIdType v) |