ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkPassInputTypeAlgorithm Class Reference

vtkPassInputTypeAlgorithm - Superclass for algorithms that produce output of the same type as input More...

Inheritance diagram for Kitware.VTK.vtkPassInputTypeAlgorithm:
[legend]
Collaboration diagram for Kitware.VTK.vtkPassInputTypeAlgorithm:
[legend]

List of all members.

Public Member Functions

 vtkPassInputTypeAlgorithm (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkPassInputTypeAlgorithm ()
 Undocumented Block.
void AddInput (vtkDataObject arg0)
 Add an input of this algorithm. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::AddInputConnection(). See SetInput() for details.
void AddInput (int arg0, vtkDataObject arg1)
 Add an input of this algorithm. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::AddInputConnection(). See SetInput() for details.
vtkGraph GetGraphOutput ()
 Get the output as vtkGraph.
vtkImageData GetImageDataOutput ()
 Get the output as vtkStructuredPoints.
vtkDataObject GetInput ()
 Get the input data object. This method is not recommended for use, but lots of old style filters use it.
vtkDataObject GetOutput ()
 Get the output data object for a port on this algorithm.
vtkDataObject GetOutput (int arg0)
 Get the output data object for a port on this algorithm.
vtkPolyData GetPolyDataOutput ()
 Get the output as vtkPolyData.
vtkRectilinearGrid GetRectilinearGridOutput ()
 Get the output as vtkRectilinearGrid.
vtkStructuredGrid GetStructuredGridOutput ()
 Get the output as vtkStructuredGrid.
vtkStructuredPoints GetStructuredPointsOutput ()
 Get the output as vtkStructuredPoints.
vtkTable GetTableOutput ()
 Get the output as vtkTable.
vtkUnstructuredGrid GetUnstructuredGridOutput ()
 Get the output as vtkUnstructuredGrid.
override int IsA (string type)
 Undocumented Block.
new vtkPassInputTypeAlgorithm NewInstance ()
 Undocumented Block.
void SetInput (vtkDataObject arg0)
 Set an input of this algorithm. You should not override these methods because they are not the only way to connect a pipeline. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::SetInputConnection(). These methods transform the input index to the input port index, not an index of a connection within a single port.
void SetInput (int arg0, vtkDataObject arg1)
 Set an input of this algorithm. You should not override these methods because they are not the only way to connect a pipeline. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::SetInputConnection(). These methods transform the input index to the input port index, not an index of a connection within a single port.

Static Public Member Functions

static new
vtkPassInputTypeAlgorithm 
New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new
vtkPassInputTypeAlgorithm 
SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkPassInputTypeAlgorithm"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "25vtkPassInputTypeAlgorithm"
 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 vtkPassInputTypeAlgorithm_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPassInputTypeAlgorithm_AddInput_01 (HandleRef pThis, HandleRef arg0)
static internal void vtkPassInputTypeAlgorithm_AddInput_02 (HandleRef pThis, int arg0, HandleRef arg1)
static internal IntPtr vtkPassInputTypeAlgorithm_GetGraphOutput_03 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetImageDataOutput_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetInput_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetOutput_06 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetOutput_07 (HandleRef pThis, int arg0, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetPolyDataOutput_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetRectilinearGridOutput_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetStructuredGridOutput_10 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetStructuredPointsOutput_11 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetTableOutput_12 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_GetUnstructuredGridOutput_13 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkPassInputTypeAlgorithm_IsA_14 (HandleRef pThis, string type)
static internal int vtkPassInputTypeAlgorithm_IsTypeOf_15 (string type)
static internal IntPtr vtkPassInputTypeAlgorithm_NewInstance_17 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPassInputTypeAlgorithm_SafeDownCast_18 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPassInputTypeAlgorithm_SetInput_19 (HandleRef pThis, HandleRef arg0)
static internal void vtkPassInputTypeAlgorithm_SetInput_20 (HandleRef pThis, int arg0, HandleRef arg1)

Static Private Member Functions

static vtkPassInputTypeAlgorithm ()
 Automatically generated type registration mechanics.

Detailed Description

vtkPassInputTypeAlgorithm - Superclass for algorithms that produce output of the same type as input

Description vtkPassInputTypeAlgorithm is a convenience class to make writing algorithms easier. It is also designed to help transition old algorithms to the new pipeline architecture. Ther are some assumptions and defaults made by this class you should be aware of. This class defaults such that your filter will have one input port and one output port. If that is not the case simply change it with SetNumberOfInputPorts etc. See this classes contstructor for the default. This class also provides a FillInputPortInfo method that by default says that all inputs will be DataObject. If that isn't the case then please override this method in your subclass. This class breaks out the downstream requests into seperate functions such as RequestDataObject RequestData and RequestInformation. The default implementation of RequestDataObject will create an output data of the same type as the input.


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

Add an input of this algorithm. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::AddInputConnection(). See SetInput() for details.

Add an input of this algorithm. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::AddInputConnection(). See SetInput() for details.

override void Kitware.VTK.vtkPassInputTypeAlgorithm.Dispose ( bool  disposing) [protected]

Get the output as vtkGraph.

Here is the call graph for this function:

Get the output as vtkStructuredPoints.

Here is the call graph for this function:

Get the input data object. This method is not recommended for use, but lots of old style filters use it.

Here is the call graph for this function:

Get the output data object for a port on this algorithm.

Here is the call graph for this function:

Get the output data object for a port on this algorithm.

Here is the call graph for this function:

Get the output as vtkPolyData.

Here is the call graph for this function:

Get the output as vtkRectilinearGrid.

Here is the call graph for this function:

Get the output as vtkStructuredGrid.

Here is the call graph for this function:

Get the output as vtkStructuredPoints.

Here is the call graph for this function:

Get the output as vtkTable.

Here is the call graph for this function:

Get the output as vtkUnstructuredGrid.

Here is the call graph for this function:

override int Kitware.VTK.vtkPassInputTypeAlgorithm.IsA ( string  type) [virtual]
static new int Kitware.VTK.vtkPassInputTypeAlgorithm.IsTypeOf ( string  type) [static]

Set an input of this algorithm. You should not override these methods because they are not the only way to connect a pipeline. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::SetInputConnection(). These methods transform the input index to the input port index, not an index of a connection within a single port.

Set an input of this algorithm. You should not override these methods because they are not the only way to connect a pipeline. Note that these methods support old-style pipeline connections. When writing new code you should use the more general vtkAlgorithm::SetInputConnection(). These methods transform the input index to the input port index, not an index of a connection within a single port.

static internal void Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_AddInput_01 ( HandleRef  pThis,
HandleRef  arg0 
) [private]
static internal void Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_AddInput_02 ( HandleRef  pThis,
int  arg0,
HandleRef  arg1 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetGraphOutput_03 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetImageDataOutput_04 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetInput_05 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetOutput_06 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetOutput_07 ( HandleRef  pThis,
int  arg0,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetPolyDataOutput_08 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetRectilinearGridOutput_09 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetStructuredGridOutput_10 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetStructuredPointsOutput_11 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetTableOutput_12 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_GetUnstructuredGridOutput_13 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_IsA_14 ( HandleRef  pThis,
string  type 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_NewInstance_17 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_SafeDownCast_18 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_SetInput_19 ( HandleRef  pThis,
HandleRef  arg0 
) [private]
static internal void Kitware.VTK.vtkPassInputTypeAlgorithm.vtkPassInputTypeAlgorithm_SetInput_20 ( HandleRef  pThis,
int  arg0,
HandleRef  arg1 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkPassInputTypeAlgorithm.MRClassNameKey = "25vtkPassInputTypeAlgorithm" [static]
new const string Kitware.VTK.vtkPassInputTypeAlgorithm.MRFullTypeName = "Kitware.VTK.vtkPassInputTypeAlgorithm"

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