ActiViz .NET
5.8.0
|
vtkUndirectedGraph - An undirected graph. More...
Public Member Functions | |
vtkUndirectedGraph (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkUndirectedGraph () | |
Undocumented Block. | |
override int | GetDataObjectType () |
Return what type of dataset this is. | |
override int | GetInDegree (int v) |
Returns the full degree of the vertex. | |
override void | GetInEdge (int v, int i, vtkGraphEdge e) |
Random-access method for retrieving incoming edges to vertex v. The method fills the vtkGraphEdge instance with the id, source, and target of the edge. This method is provided for wrappers, GetInEdge(vtkIdType, vtkIdType) is preferred. | |
override void | GetInEdges (int v, vtkInEdgeIterator it) |
Initialize the iterator to get the incoming edges to a vertex. For an undirected graph, this is all incident edges. | |
override int | IsA (string type) |
Undocumented Block. | |
virtual bool | IsStructureValid (vtkGraph g) |
Check the structure, and accept it if it is a valid undirected graph. This is public to allow the ToDirected/UndirectedGraph to work. | |
new vtkUndirectedGraph | NewInstance () |
Undocumented Block. | |
Static Public Member Functions | |
static new vtkUndirectedGraph | New () |
Undocumented Block. | |
static new vtkUndirectedGraph | GetData (vtkInformation info) |
Random-access method for retrieving incoming edges to vertex v. The method fills the vtkGraphEdge instance with the id, source, and target of the edge. This method is provided for wrappers, GetInEdge(vtkIdType, vtkIdType) is preferred. | |
static new vtkUndirectedGraph | GetData (vtkInformationVector v, int i) |
Random-access method for retrieving incoming edges to vertex v. The method fills the vtkGraphEdge instance with the id, source, and target of the edge. This method is provided for wrappers, GetInEdge(vtkIdType, vtkIdType) is preferred. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkUndirectedGraph | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkUndirectedGraph" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "18vtkUndirectedGraph" |
Automatically generated type registration mechanics. | |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly. | |
Private Member Functions | |
static internal IntPtr | vtkUndirectedGraph_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkUndirectedGraph_GetData_01 (HandleRef info, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkUndirectedGraph_GetData_02 (HandleRef v, int i, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkUndirectedGraph_GetDataObjectType_03 (HandleRef pThis) |
static internal int | vtkUndirectedGraph_GetInDegree_04 (HandleRef pThis, int v) |
static internal void | vtkUndirectedGraph_GetInEdge_05 (HandleRef pThis, int v, int i, HandleRef e) |
static internal void | vtkUndirectedGraph_GetInEdges_06 (HandleRef pThis, int v, HandleRef it) |
static internal int | vtkUndirectedGraph_IsA_07 (HandleRef pThis, string type) |
static internal byte | vtkUndirectedGraph_IsStructureValid_08 (HandleRef pThis, HandleRef g) |
static internal int | vtkUndirectedGraph_IsTypeOf_09 (string type) |
static internal IntPtr | vtkUndirectedGraph_NewInstance_11 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkUndirectedGraph_SafeDownCast_12 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
Static Private Member Functions | |
static | vtkUndirectedGraph () |
Automatically generated type registration mechanics. |
vtkUndirectedGraph - An undirected graph.
Description vtkUndirectedGraph is a collection of vertices along with a collection of undirected edges (they connect two vertices in no particular order). ShallowCopy(), DeepCopy(), CheckedShallowCopy(), CheckedDeepCopy() accept instances of vtkUndirectedGraph and vtkMutableUndirectedGraph. GetOutEdges(v, it) and GetInEdges(v, it) return the same list of edges, which is the list of all edges which have a v as an endpoint. GetInDegree(v), GetOutDegree(v) and GetDegree(v) all return the full degree of vertex v.
vtkUndirectedGraph is read-only. To create an undirected graph, use an instance of vtkMutableUndirectedGraph, then you may set the structure to a vtkUndirectedGraph using ShallowCopy().
static Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
override void Kitware.VTK.vtkUndirectedGraph.Dispose | ( | bool | disposing | ) | [protected] |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.
Reimplemented from Kitware.VTK.vtkGraph.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.
static new vtkUndirectedGraph Kitware.VTK.vtkUndirectedGraph.GetData | ( | vtkInformation | info | ) | [static] |
Random-access method for retrieving incoming edges to vertex v. The method fills the vtkGraphEdge instance with the id, source, and target of the edge. This method is provided for wrappers, GetInEdge(vtkIdType, vtkIdType) is preferred.
Reimplemented from Kitware.VTK.vtkGraph.
static new vtkUndirectedGraph Kitware.VTK.vtkUndirectedGraph.GetData | ( | vtkInformationVector | v, |
int | i | ||
) | [static] |
Random-access method for retrieving incoming edges to vertex v. The method fills the vtkGraphEdge instance with the id, source, and target of the edge. This method is provided for wrappers, GetInEdge(vtkIdType, vtkIdType) is preferred.
Reimplemented from Kitware.VTK.vtkGraph.
override int Kitware.VTK.vtkUndirectedGraph.GetDataObjectType | ( | ) | [virtual] |
Return what type of dataset this is.
Reimplemented from Kitware.VTK.vtkGraph.
override int Kitware.VTK.vtkUndirectedGraph.GetInDegree | ( | int | v | ) | [virtual] |
Returns the full degree of the vertex.
Reimplemented from Kitware.VTK.vtkGraph.
override void Kitware.VTK.vtkUndirectedGraph.GetInEdge | ( | int | v, |
int | i, | ||
vtkGraphEdge | e | ||
) | [virtual] |
Random-access method for retrieving incoming edges to vertex v. The method fills the vtkGraphEdge instance with the id, source, and target of the edge. This method is provided for wrappers, GetInEdge(vtkIdType, vtkIdType) is preferred.
Reimplemented from Kitware.VTK.vtkGraph.
override void Kitware.VTK.vtkUndirectedGraph.GetInEdges | ( | int | v, |
vtkInEdgeIterator | it | ||
) | [virtual] |
Initialize the iterator to get the incoming edges to a vertex. For an undirected graph, this is all incident edges.
Reimplemented from Kitware.VTK.vtkGraph.
override int Kitware.VTK.vtkUndirectedGraph.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraph.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.
virtual bool Kitware.VTK.vtkUndirectedGraph.IsStructureValid | ( | vtkGraph | g | ) | [virtual] |
Check the structure, and accept it if it is a valid undirected graph. This is public to allow the ToDirected/UndirectedGraph to work.
static new int Kitware.VTK.vtkUndirectedGraph.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraph.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.
static new vtkUndirectedGraph Kitware.VTK.vtkUndirectedGraph.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataObject.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraph.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.
static new vtkUndirectedGraph Kitware.VTK.vtkUndirectedGraph.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraph.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.
static internal IntPtr Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_GetData_01 | ( | HandleRef | info, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_GetData_02 | ( | HandleRef | v, |
int | i, | ||
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_GetDataObjectType_03 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_GetInDegree_04 | ( | HandleRef | pThis, |
int | v | ||
) | [private] |
static internal void Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_GetInEdge_05 | ( | HandleRef | pThis, |
int | v, | ||
int | i, | ||
HandleRef | e | ||
) | [private] |
static internal void Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_GetInEdges_06 | ( | HandleRef | pThis, |
int | v, | ||
HandleRef | it | ||
) | [private] |
static internal int Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_IsA_07 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal byte Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_IsStructureValid_08 | ( | HandleRef | pThis, |
HandleRef | g | ||
) | [private] |
static internal int Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_IsTypeOf_09 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_NewInstance_11 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkUndirectedGraph.vtkUndirectedGraph_SafeDownCast_12 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
new readonly string Kitware.VTK.vtkUndirectedGraph.MRClassNameKey = "18vtkUndirectedGraph" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkGraph.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.
new const string Kitware.VTK.vtkUndirectedGraph.MRFullTypeName = "Kitware.VTK.vtkUndirectedGraph" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkGraph.
Reimplemented in Kitware.VTK.vtkMutableUndirectedGraph.