|
ActiViz .NET
5.8.0
|
vtkCollectGraph - Collect distributed graph. More...
Public Types | |
| enum | DIRECTED_OUTPUT_WrapperEnum { DIRECTED_OUTPUT = 0, UNDIRECTED_OUTPUT = 1, USE_INPUT_TYPE = 2 } |
| To collect or just copy input to output. Off (collect) by default. More... | |
Public Member Functions | |
| vtkCollectGraph (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
| Automatically generated constructor - called from generated code. DO NOT call directly. | |
| vtkCollectGraph () | |
| Undocumented Block. | |
| virtual vtkMultiProcessController | GetController () |
| By defualt this filter uses the global controller, but this method can be used to set another instead. | |
| virtual int | GetOutputType () |
| Directedness flag, used to signal whether the output graph is directed or undirected. DIRECTED_OUTPUT expects that this filter is generating a directed graph. UNDIRECTED_OUTPUT expects that this filter is generating an undirected graph. DIRECTED_OUTPUT and UNDIRECTED_OUTPUT flags should only be set on the client filter. Server filters should be set to USE_INPUT_TYPE since they have valid input and the directedness is determined from the input type. | |
| virtual int | GetPassThrough () |
| To collect or just copy input to output. Off (collect) by default. | |
| virtual vtkSocketController | GetSocketController () |
| When this filter is being used in client-server mode, this is the controller used to communicate between client and server. Client should not set the other controller. | |
| override int | IsA (string type) |
| Undocumented Block. | |
| new vtkCollectGraph | NewInstance () |
| Undocumented Block. | |
| virtual void | PassThroughOff () |
| To collect or just copy input to output. Off (collect) by default. | |
| virtual void | PassThroughOn () |
| To collect or just copy input to output. Off (collect) by default. | |
| virtual void | SetController (vtkMultiProcessController arg0) |
| By defualt this filter uses the global controller, but this method can be used to set another instead. | |
| virtual void | SetOutputType (int _arg) |
| Directedness flag, used to signal whether the output graph is directed or undirected. DIRECTED_OUTPUT expects that this filter is generating a directed graph. UNDIRECTED_OUTPUT expects that this filter is generating an undirected graph. DIRECTED_OUTPUT and UNDIRECTED_OUTPUT flags should only be set on the client filter. Server filters should be set to USE_INPUT_TYPE since they have valid input and the directedness is determined from the input type. | |
| virtual void | SetPassThrough (int _arg) |
| To collect or just copy input to output. Off (collect) by default. | |
| virtual void | SetSocketController (vtkSocketController arg0) |
| When this filter is being used in client-server mode, this is the controller used to communicate between client and server. Client should not set the other controller. | |
Static Public Member Functions | |
| static new vtkCollectGraph | New () |
| Undocumented Block. | |
| static new int | IsTypeOf (string type) |
| Undocumented Block. | |
| static new vtkCollectGraph | SafeDownCast (vtkObjectBase o) |
| Undocumented Block. | |
Public Attributes | |
| new const string | MRFullTypeName = "Kitware.VTK.vtkCollectGraph" |
| Automatically generated type registration mechanics. | |
Static Public Attributes | |
| static new readonly string | MRClassNameKey = "15vtkCollectGraph" |
| 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 | vtkCollectGraph_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal IntPtr | vtkCollectGraph_GetController_01 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal int | vtkCollectGraph_GetOutputType_02 (HandleRef pThis) |
| static internal int | vtkCollectGraph_GetPassThrough_03 (HandleRef pThis) |
| static internal IntPtr | vtkCollectGraph_GetSocketController_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal int | vtkCollectGraph_IsA_05 (HandleRef pThis, string type) |
| static internal int | vtkCollectGraph_IsTypeOf_06 (string type) |
| static internal IntPtr | vtkCollectGraph_NewInstance_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal void | vtkCollectGraph_PassThroughOff_09 (HandleRef pThis) |
| static internal void | vtkCollectGraph_PassThroughOn_10 (HandleRef pThis) |
| static internal IntPtr | vtkCollectGraph_SafeDownCast_11 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
| static internal void | vtkCollectGraph_SetController_12 (HandleRef pThis, HandleRef arg0) |
| static internal void | vtkCollectGraph_SetOutputType_13 (HandleRef pThis, int _arg) |
| static internal void | vtkCollectGraph_SetPassThrough_14 (HandleRef pThis, int _arg) |
| static internal void | vtkCollectGraph_SetSocketController_15 (HandleRef pThis, HandleRef arg0) |
Static Private Member Functions | |
| static | vtkCollectGraph () |
| Automatically generated type registration mechanics. | |
vtkCollectGraph - Collect distributed graph.
Description This filter has code to collect a graph from across processes onto vertex 0. Collection can be turned on or off using the "PassThrough" flag.
| static Kitware.VTK.vtkCollectGraph.vtkCollectGraph | ( | ) | [static, private] |
Automatically generated type registration mechanics.
| Kitware.VTK.vtkCollectGraph.vtkCollectGraph | ( | IntPtr | rawCppThis, |
| bool | callDisposalMethod, | ||
| bool | strong | ||
| ) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
| override void Kitware.VTK.vtkCollectGraph.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.vtkGraphAlgorithm.
| virtual vtkMultiProcessController Kitware.VTK.vtkCollectGraph.GetController | ( | ) | [virtual] |
By defualt this filter uses the global controller, but this method can be used to set another instead.
| virtual int Kitware.VTK.vtkCollectGraph.GetOutputType | ( | ) | [virtual] |
Directedness flag, used to signal whether the output graph is directed or undirected. DIRECTED_OUTPUT expects that this filter is generating a directed graph. UNDIRECTED_OUTPUT expects that this filter is generating an undirected graph. DIRECTED_OUTPUT and UNDIRECTED_OUTPUT flags should only be set on the client filter. Server filters should be set to USE_INPUT_TYPE since they have valid input and the directedness is determined from the input type.
| virtual int Kitware.VTK.vtkCollectGraph.GetPassThrough | ( | ) | [virtual] |
To collect or just copy input to output. Off (collect) by default.
| virtual vtkSocketController Kitware.VTK.vtkCollectGraph.GetSocketController | ( | ) | [virtual] |
When this filter is being used in client-server mode, this is the controller used to communicate between client and server. Client should not set the other controller.
| override int Kitware.VTK.vtkCollectGraph.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraphAlgorithm.
| static new int Kitware.VTK.vtkCollectGraph.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraphAlgorithm.
| static new vtkCollectGraph Kitware.VTK.vtkCollectGraph.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraphAlgorithm.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraphAlgorithm.
| virtual void Kitware.VTK.vtkCollectGraph.PassThroughOff | ( | ) | [virtual] |
To collect or just copy input to output. Off (collect) by default.
| virtual void Kitware.VTK.vtkCollectGraph.PassThroughOn | ( | ) | [virtual] |
To collect or just copy input to output. Off (collect) by default.
| static new vtkCollectGraph Kitware.VTK.vtkCollectGraph.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkGraphAlgorithm.
| virtual void Kitware.VTK.vtkCollectGraph.SetController | ( | vtkMultiProcessController | arg0 | ) | [virtual] |
By defualt this filter uses the global controller, but this method can be used to set another instead.
| virtual void Kitware.VTK.vtkCollectGraph.SetOutputType | ( | int | _arg | ) | [virtual] |
Directedness flag, used to signal whether the output graph is directed or undirected. DIRECTED_OUTPUT expects that this filter is generating a directed graph. UNDIRECTED_OUTPUT expects that this filter is generating an undirected graph. DIRECTED_OUTPUT and UNDIRECTED_OUTPUT flags should only be set on the client filter. Server filters should be set to USE_INPUT_TYPE since they have valid input and the directedness is determined from the input type.
| virtual void Kitware.VTK.vtkCollectGraph.SetPassThrough | ( | int | _arg | ) | [virtual] |
To collect or just copy input to output. Off (collect) by default.
| virtual void Kitware.VTK.vtkCollectGraph.SetSocketController | ( | vtkSocketController | arg0 | ) | [virtual] |
When this filter is being used in client-server mode, this is the controller used to communicate between client and server. Client should not set the other controller.
| static internal IntPtr Kitware.VTK.vtkCollectGraph.vtkCollectGraph_GetController_01 | ( | HandleRef | pThis, |
| ref uint | mteStatus, | ||
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal int Kitware.VTK.vtkCollectGraph.vtkCollectGraph_GetOutputType_02 | ( | HandleRef | pThis | ) | [private] |
| static internal int Kitware.VTK.vtkCollectGraph.vtkCollectGraph_GetPassThrough_03 | ( | HandleRef | pThis | ) | [private] |
| static internal IntPtr Kitware.VTK.vtkCollectGraph.vtkCollectGraph_GetSocketController_04 | ( | HandleRef | pThis, |
| ref uint | mteStatus, | ||
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal int Kitware.VTK.vtkCollectGraph.vtkCollectGraph_IsA_05 | ( | HandleRef | pThis, |
| string | type | ||
| ) | [private] |
| static internal int Kitware.VTK.vtkCollectGraph.vtkCollectGraph_IsTypeOf_06 | ( | string | type | ) | [private] |
| static internal IntPtr Kitware.VTK.vtkCollectGraph.vtkCollectGraph_New | ( | ref uint | mteStatus, |
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal IntPtr Kitware.VTK.vtkCollectGraph.vtkCollectGraph_NewInstance_08 | ( | HandleRef | pThis, |
| ref uint | mteStatus, | ||
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkCollectGraph.vtkCollectGraph_PassThroughOff_09 | ( | HandleRef | pThis | ) | [private] |
| static internal void Kitware.VTK.vtkCollectGraph.vtkCollectGraph_PassThroughOn_10 | ( | HandleRef | pThis | ) | [private] |
| static internal IntPtr Kitware.VTK.vtkCollectGraph.vtkCollectGraph_SafeDownCast_11 | ( | HandleRef | o, |
| ref uint | mteStatus, | ||
| ref uint | mteIndex, | ||
| ref uint | rawRefCount | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkCollectGraph.vtkCollectGraph_SetController_12 | ( | HandleRef | pThis, |
| HandleRef | arg0 | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkCollectGraph.vtkCollectGraph_SetOutputType_13 | ( | HandleRef | pThis, |
| int | _arg | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkCollectGraph.vtkCollectGraph_SetPassThrough_14 | ( | HandleRef | pThis, |
| int | _arg | ||
| ) | [private] |
| static internal void Kitware.VTK.vtkCollectGraph.vtkCollectGraph_SetSocketController_15 | ( | HandleRef | pThis, |
| HandleRef | arg0 | ||
| ) | [private] |
new readonly string Kitware.VTK.vtkCollectGraph.MRClassNameKey = "15vtkCollectGraph" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkGraphAlgorithm.
| new const string Kitware.VTK.vtkCollectGraph.MRFullTypeName = "Kitware.VTK.vtkCollectGraph" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkGraphAlgorithm.
1.7.6.1