vtkMutableDirectedGraph Class Reference

#include <vtkMutableDirectedGraph.h>

Inheritance diagram for vtkMutableDirectedGraph:

Inheritance graph
[legend]
Collaboration diagram for vtkMutableDirectedGraph:

Collaboration graph
[legend]

List of all members.


Detailed Description

An editable directed graph.

vtkMutableDirectedGraph is a directed graph which has additional methods for adding edges and vertices. AddChild() is a convenience method for constructing trees. ShallowCopy(), DeepCopy(), CheckedShallowCopy() and CheckedDeepCopy() will succeed for instances of vtkDirectedGraph, vtkMutableDirectedGraph and vtkTree.

See also:
vtkDirectedGraph vtkGraph vtkTree
Tests:
vtkMutableDirectedGraph (Tests)

Definition at line 46 of file vtkMutableDirectedGraph.h.


Public Types

typedef vtkDirectedGraph Superclass

Public Member Functions

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
vtkIdType AddVertex ()
vtkIdType AddVertex (vtkVariantArray *propertyArr)
vtkEdgeType AddEdge (vtkIdType u, vtkIdType v)
void LazyAddVertex ()
void LazyAddVertex (vtkVariantArray *propertyArr)
void LazyAddVertex (const vtkVariant &pedigreeId)
void LazyAddEdge (vtkIdType u, vtkIdType v, vtkVariantArray *propertyArr=0)
vtkGraphEdgeAddGraphEdge (vtkIdType u, vtkIdType v)
vtkIdType AddVertex (const vtkVariant &pedigreeId)
vtkEdgeType AddEdge (vtkIdType u, vtkIdType v, vtkVariantArray *propertyArr)
vtkEdgeType AddEdge (const vtkVariant &uPedigreeId, vtkIdType v, vtkVariantArray *propertyArr=0)
vtkEdgeType AddEdge (vtkIdType u, const vtkVariant &vPedigreeId, vtkVariantArray *propertyArr=0)
vtkEdgeType AddEdge (const vtkVariant &uPedigreeId, const vtkVariant &vPedigreeId, vtkVariantArray *propertyArr=0)
void LazyAddEdge (const vtkVariant &uPedigreeId, vtkIdType v, vtkVariantArray *propertyArr=0)
void LazyAddEdge (vtkIdType u, const vtkVariant &vPedigreeId, vtkVariantArray *propertyArr=0)
void LazyAddEdge (const vtkVariant &uPedigreeId, const vtkVariant &vPedigreeId, vtkVariantArray *propertyArr=0)
vtkIdType AddChild (vtkIdType parent, vtkVariantArray *propertyArr)
vtkIdType AddChild (vtkIdType parent)

Static Public Member Functions

static vtkMutableDirectedGraphNew ()
static int IsTypeOf (const char *type)
static vtkMutableDirectedGraphSafeDownCast (vtkObject *o)

Protected Member Functions

 vtkMutableDirectedGraph ()
 ~vtkMutableDirectedGraph ()

Protected Attributes

vtkGraphEdgeGraphEdge

Member Typedef Documentation

Reimplemented from vtkDirectedGraph.

Definition at line 50 of file vtkMutableDirectedGraph.h.


Constructor & Destructor Documentation

vtkMutableDirectedGraph::vtkMutableDirectedGraph (  )  [protected]

vtkMutableDirectedGraph::~vtkMutableDirectedGraph (  )  [protected]


Member Function Documentation

static vtkMutableDirectedGraph* vtkMutableDirectedGraph::New (  )  [static]

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkDirectedGraph.

virtual const char* vtkMutableDirectedGraph::GetClassName (  )  [virtual]

Reimplemented from vtkDirectedGraph.

static int vtkMutableDirectedGraph::IsTypeOf ( const char *  name  )  [static]

Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkDirectedGraph.

virtual int vtkMutableDirectedGraph::IsA ( const char *  name  )  [virtual]

Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkDirectedGraph.

static vtkMutableDirectedGraph* vtkMutableDirectedGraph::SafeDownCast ( vtkObject o  )  [static]

Reimplemented from vtkDirectedGraph.

void vtkMutableDirectedGraph::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkDirectedGraph.

vtkIdType vtkMutableDirectedGraph::AddVertex (  ) 

Adds a vertex to the graph, and returns the id of that vertex. If non-null, propertyArr provides properties that will be attached to this vertex. The values in propertyArr must match up with the arrays in the vertex data retrieved by GetVertexData. In a distributed graph, this routine cannot be used to add a vertex if the vertices in the graph have pedigree IDs, because this routine will always add the vertex locally, which may conflict with the proper location of the vertex based on the distribution of the pedigree IDs.

vtkIdType vtkMutableDirectedGraph::AddVertex ( vtkVariantArray propertyArr  ) 

Adds a vertex to the graph, and returns the id of that vertex. If non-null, propertyArr provides properties that will be attached to this vertex. The values in propertyArr must match up with the arrays in the vertex data retrieved by GetVertexData. If the graph has pedigree IDs for its vertices, and a vertex with the given pedigree ID already exists, its properties will be overwritten with the properties in propertyArr and its ID will be returned. Note that, in a distributed graph with pedigree IDs, the vertex added or found might not be local. In this case, AddVertex will wait until the vertex can be added or found remotely, so that the proper vertex ID can be returned. If you don't actually need to use the vertex ID, consider calling LazyAddVertex, which provides better performance by eliminating the delays associated with returning the vertex ID.

vtkIdType vtkMutableDirectedGraph::AddVertex ( const vtkVariant pedigreeId  ) 

Adds a vertex with the given pedigree ID to the graph (if a vertex with that pedigree ID does not already exist) and returns the id the vertex with that pedigree ID. If a vertex with the given pedigree ID already exists, its ID will be returned. Note that, in a distributed graph, the vertex added or found might not be local. In this case, AddVertex will wait until the vertex can be added or found remotely, so that the proper vertex ID can be returned. If you don't actually need to use the vertex ID, consider calling LazyAddVertex, which provides better performance by eliminating the delays associated with returning the vertex ID.

vtkEdgeType vtkMutableDirectedGraph::AddEdge ( vtkIdType  u,
vtkIdType  v 
)

Adds a directed edge from u to v to the graph and returns a vtkEdgeType structure for that edge. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData. Both u and v must refer to vertices already in the graph.

vtkEdgeType vtkMutableDirectedGraph::AddEdge ( vtkIdType  u,
vtkIdType  v,
vtkVariantArray propertyArr 
)

Adds a directed edge from u to v to the graph and returns a vtkEdgeType structure for that edge. propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData. Both u and v must refer to vertices already in the graph.

vtkEdgeType vtkMutableDirectedGraph::AddEdge ( const vtkVariant uPedigreeId,
vtkIdType  v,
vtkVariantArray propertyArr = 0 
)

Adds a directed edge from u to v to the graph and returns a vtkEdgeType structure for that edge. uPedigreeId is the pedigree ID of a vertex u, which will be automatically added if it does not already exist. v must refer to a vertex already in the graph. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

vtkEdgeType vtkMutableDirectedGraph::AddEdge ( vtkIdType  u,
const vtkVariant vPedigreeId,
vtkVariantArray propertyArr = 0 
)

Adds a directed edge from u to v to the graph and returns a vtkEdgeType structure for that edge. vPedigreeId is the pedigree ID of a vertex v, which will be automatically added if it does not already exist. u must refer to a vertex already in the graph. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

vtkEdgeType vtkMutableDirectedGraph::AddEdge ( const vtkVariant uPedigreeId,
const vtkVariant vPedigreeId,
vtkVariantArray propertyArr = 0 
)

Adds a directed edge from u to v to the graph and returns a vtkEdgeType structure for that edge. uPedigreeId and vPedigreeId are the pedigree IDs of vertices u and v, which will be automatically added if they do not already exist. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

void vtkMutableDirectedGraph::LazyAddVertex (  ) 

Adds a vertex to the graph, and returns the id of that vertex. If non-null, propertyArr provides properties that will be attached to this vertex. The values in propertyArr must match up with the arrays in the vertex data retrieved by GetVertexData.

void vtkMutableDirectedGraph::LazyAddVertex ( vtkVariantArray propertyArr  ) 

Adds a vertex to the graph, and returns the id of that vertex. If non-null, propertyArr provides properties that will be attached to this vertex. The values in propertyArr must match up with the arrays in the vertex data retrieved by GetVertexData.

void vtkMutableDirectedGraph::LazyAddVertex ( const vtkVariant pedigreeId  ) 

Adds a vertex with the given pedigree ID to the graph (if a vertex with that pedigree ID does not already exist) and returns the id the vertex with that pedigree ID.

void vtkMutableDirectedGraph::LazyAddEdge ( vtkIdType  u,
vtkIdType  v,
vtkVariantArray propertyArr = 0 
)

Adds a directed edge from u to v to the graph. The edge may not be added immediately, which provides more optimization opportunities for distributed graphs; consequently, the edge itself is not actually returned. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

void vtkMutableDirectedGraph::LazyAddEdge ( const vtkVariant uPedigreeId,
vtkIdType  v,
vtkVariantArray propertyArr = 0 
)

Adds a directed edge from u to v to the graph. The edge may not be added immediately, which provides more optimization opportunities for distributed graphs; consequently, the edge itself is not actually returned. uPedigreeId is the pedigree ID of a vertex, which will be automatically added if it does not already exist. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

void vtkMutableDirectedGraph::LazyAddEdge ( vtkIdType  u,
const vtkVariant vPedigreeId,
vtkVariantArray propertyArr = 0 
)

Adds a directed edge from u to v to the graph. The edge may not be added immediately, which provides more optimization opportunities for distributed graphs; consequently, the edge itself is not actually returned. vPedigreeId is the pedigree ID of a vertex, which will be automatically added if it does not already exist. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

void vtkMutableDirectedGraph::LazyAddEdge ( const vtkVariant uPedigreeId,
const vtkVariant vPedigreeId,
vtkVariantArray propertyArr = 0 
)

Adds a directed edge from u to v to the graph. The edge may not be added immediately, which provides more optimization opportunities for distributed graphs; consequently, the edge itself is not actually returned. uPedigreeId and vPedigreeId are the pedigree IDs of vertices u and v, which will be automatically added if they do not already exist. If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

vtkGraphEdge* vtkMutableDirectedGraph::AddGraphEdge ( vtkIdType  u,
vtkIdType  v 
)

Version of AddEdge that returns a heavyweight vtkGraphEdge for use with wrappers. The graph owns the reference of the edge and will replace its contents on the next call to AddGraphEdge.

vtkIdType vtkMutableDirectedGraph::AddChild ( vtkIdType  parent,
vtkVariantArray propertyArr 
)

Convenience method for creating trees. Returns the newly created vertex id. Shortcut for vtkIdType v = g->AddVertex(); g->AddEdge(parent, v); If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

vtkIdType vtkMutableDirectedGraph::AddChild ( vtkIdType  parent  )  [inline]

Convenience method for creating trees. Returns the newly created vertex id. Shortcut for vtkIdType v = g->AddVertex(); g->AddEdge(parent, v); If provided, propertyArr provides edge properties for the newly-created edge. The values in propertyArr must match up with the arrays in the edge data returned by GetEdgeData.

Definition at line 231 of file vtkMutableDirectedGraph.h.


Member Data Documentation

Graph edge that is reused of AddGraphEdge calls.

Definition at line 240 of file vtkMutableDirectedGraph.h.


The documentation for this class was generated from the following file:

Generated on Wed Jun 3 19:19:07 2009 for VTK by  doxygen 1.5.6