|
ActiViz .NET
5.8.0
|
vtkBoostBreadthFirstSearchTree - Contructs a BFS tree from a graph More...
Public Member Functions | |
| vtkBoostBreadthFirstSearchTree (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
| Automatically generated constructor - called from generated code. DO NOT call directly. | |
| vtkBoostBreadthFirstSearchTree () | |
| Undocumented Block. | |
| virtual void | CreateGraphVertexIdArrayOff () |
| Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off. | |
| virtual void | CreateGraphVertexIdArrayOn () |
| Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off. | |
| virtual bool | GetCreateGraphVertexIdArray () |
| Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off. | |
| virtual bool | GetReverseEdges () |
| Turn on this option to reverse the edges in the graph. | |
| override int | IsA (string type) |
| Undocumented Block. | |
| new vtkBoostBreadthFirstSearchTree | NewInstance () |
| Undocumented Block. | |
| virtual void | ReverseEdgesOff () |
| Turn on this option to reverse the edges in the graph. | |
| virtual void | ReverseEdgesOn () |
| Turn on this option to reverse the edges in the graph. | |
| virtual void | SetCreateGraphVertexIdArray (bool _arg) |
| Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off. | |
| void | SetOriginVertex (long index) |
| Set the index (into the vertex array) of the breadth first search 'origin' vertex. | |
| virtual void | SetReverseEdges (bool _arg) |
| Turn on this option to reverse the edges in the graph. | |
Static Public Member Functions | |
| static new vtkBoostBreadthFirstSearchTree | New () |
| Undocumented Block. | |
| static new int | IsTypeOf (string type) |
| Undocumented Block. | |
| static new vtkBoostBreadthFirstSearchTree | SafeDownCast (vtkObjectBase o) |
| Undocumented Block. | |
Public Attributes | |
| new const string | MRFullTypeName = "Kitware.VTK.vtkBoostBreadthFirstSearchTree" |
| Automatically generated type registration mechanics. | |
Static Public Attributes | |
| static new readonly string | MRClassNameKey = "30vtkBoostBreadthFirstSearchTree" |
| 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 | vtkBoostBreadthFirstSearchTree_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal void | vtkBoostBreadthFirstSearchTree_CreateGraphVertexIdArrayOff_01 (HandleRef pThis) |
| static internal void | vtkBoostBreadthFirstSearchTree_CreateGraphVertexIdArrayOn_02 (HandleRef pThis) |
| static internal byte | vtkBoostBreadthFirstSearchTree_GetCreateGraphVertexIdArray_03 (HandleRef pThis) |
| static internal byte | vtkBoostBreadthFirstSearchTree_GetReverseEdges_04 (HandleRef pThis) |
| static internal int | vtkBoostBreadthFirstSearchTree_IsA_05 (HandleRef pThis, string type) |
| static internal int | vtkBoostBreadthFirstSearchTree_IsTypeOf_06 (string type) |
| static internal IntPtr | vtkBoostBreadthFirstSearchTree_NewInstance_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal void | vtkBoostBreadthFirstSearchTree_ReverseEdgesOff_09 (HandleRef pThis) |
| static internal void | vtkBoostBreadthFirstSearchTree_ReverseEdgesOn_10 (HandleRef pThis) |
| static internal IntPtr | vtkBoostBreadthFirstSearchTree_SafeDownCast_11 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal void | vtkBoostBreadthFirstSearchTree_SetCreateGraphVertexIdArray_12 (HandleRef pThis, byte _arg) |
| static internal void | vtkBoostBreadthFirstSearchTree_SetOriginVertex_13 (HandleRef pThis, long index) |
| static internal void | vtkBoostBreadthFirstSearchTree_SetReverseEdges_14 (HandleRef pThis, byte _arg) |
Static Private Member Functions | |
| static | vtkBoostBreadthFirstSearchTree () |
| Automatically generated type registration mechanics. | |
vtkBoostBreadthFirstSearchTree - Contructs a BFS tree from a graph
Description
This vtk class uses the Boost breadth_first_search generic algorithm to perform a breadth first search from a given a 'source' vertex on the input graph (a vtkGraph). The result is a tree with root node corresponding to the start node of the search.
vtkGraph vtkBoostGraphAdapter
| static Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree | ( | ) | [static, private] |
Automatically generated type registration mechanics.
| Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree | ( | IntPtr | rawCppThis, |
| bool | callDisposalMethod, | ||
| bool | strong | ||
| ) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
| virtual void Kitware.VTK.vtkBoostBreadthFirstSearchTree.CreateGraphVertexIdArrayOff | ( | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
| virtual void Kitware.VTK.vtkBoostBreadthFirstSearchTree.CreateGraphVertexIdArrayOn | ( | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
| override void Kitware.VTK.vtkBoostBreadthFirstSearchTree.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.vtkTreeAlgorithm.
| virtual bool Kitware.VTK.vtkBoostBreadthFirstSearchTree.GetCreateGraphVertexIdArray | ( | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
| virtual bool Kitware.VTK.vtkBoostBreadthFirstSearchTree.GetReverseEdges | ( | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
| override int Kitware.VTK.vtkBoostBreadthFirstSearchTree.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTreeAlgorithm.
| static new int Kitware.VTK.vtkBoostBreadthFirstSearchTree.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTreeAlgorithm.
| static new vtkBoostBreadthFirstSearchTree Kitware.VTK.vtkBoostBreadthFirstSearchTree.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTreeAlgorithm.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTreeAlgorithm.
| virtual void Kitware.VTK.vtkBoostBreadthFirstSearchTree.ReverseEdgesOff | ( | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
| virtual void Kitware.VTK.vtkBoostBreadthFirstSearchTree.ReverseEdgesOn | ( | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
| static new vtkBoostBreadthFirstSearchTree Kitware.VTK.vtkBoostBreadthFirstSearchTree.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTreeAlgorithm.
| virtual void Kitware.VTK.vtkBoostBreadthFirstSearchTree.SetCreateGraphVertexIdArray | ( | bool | _arg | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
| void Kitware.VTK.vtkBoostBreadthFirstSearchTree.SetOriginVertex | ( | long | index | ) |
Set the index (into the vertex array) of the breadth first search 'origin' vertex.
| virtual void Kitware.VTK.vtkBoostBreadthFirstSearchTree.SetReverseEdges | ( | bool | _arg | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
| static internal void Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_CreateGraphVertexIdArrayOff_01 | ( | HandleRef | pThis | ) | [private] |
| static internal void Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_CreateGraphVertexIdArrayOn_02 | ( | HandleRef | pThis | ) | [private] |
| static internal byte Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_GetCreateGraphVertexIdArray_03 | ( | HandleRef | pThis | ) | [private] |
| static internal byte Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_GetReverseEdges_04 | ( | HandleRef | pThis | ) | [private] |
| static internal int Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_IsA_05 | ( | HandleRef | pThis, |
| string | type | ||
| ) | [private] |
| static internal int Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_IsTypeOf_06 | ( | string | type | ) | [private] |
| static internal IntPtr Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_New | ( | ref uint | mteStatus, |
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal IntPtr Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_NewInstance_08 | ( | HandleRef | pThis, |
| ref uint | mteStatus, | ||
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_ReverseEdgesOff_09 | ( | HandleRef | pThis | ) | [private] |
| static internal void Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_ReverseEdgesOn_10 | ( | HandleRef | pThis | ) | [private] |
| static internal IntPtr Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_SafeDownCast_11 | ( | HandleRef | o, |
| ref uint | mteStatus, | ||
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_SetCreateGraphVertexIdArray_12 | ( | HandleRef | pThis, |
| byte | _arg | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_SetOriginVertex_13 | ( | HandleRef | pThis, |
| long | index | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkBoostBreadthFirstSearchTree.vtkBoostBreadthFirstSearchTree_SetReverseEdges_14 | ( | HandleRef | pThis, |
| byte | _arg | ||
| ) | [private] |
new readonly string Kitware.VTK.vtkBoostBreadthFirstSearchTree.MRClassNameKey = "30vtkBoostBreadthFirstSearchTree" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkTreeAlgorithm.
| new const string Kitware.VTK.vtkBoostBreadthFirstSearchTree.MRFullTypeName = "Kitware.VTK.vtkBoostBreadthFirstSearchTree" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkTreeAlgorithm.
1.7.6.1