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.vtkProgrammableFilter Class Reference

vtkProgrammableFilter - a user-programmable filter More...

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

List of all members.

Public Member Functions

 vtkProgrammableFilter (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkProgrammableFilter ()
 Undocumented Block.
delegate void ProgrammableMethodCallbackType (IntPtr arg0)
 Signature definition for programmable method callbacks. Methods passed to SetExecuteMethod or SetExecuteMethodArgDelete must conform to this signature. The presence of this typedef is useful for reference and for external analysis tools, but it cannot be used in the method signatures in these header files themselves because it prevents the internal VTK wrapper generators from wrapping these methods.
virtual void CopyArraysOff ()
 When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.
virtual void CopyArraysOn ()
 When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.
virtual bool GetCopyArrays ()
 When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.
vtkGraph GetGraphInput ()
 Get the input as a concrete type.
vtkPolyData GetPolyDataInput ()
 Get the input as a concrete type. This method is typically used by the writer of the filter function to get the input as a particular type (i.e., it essentially does type casting). It is the users responsibility to know the correct type of the input data.
vtkRectilinearGrid GetRectilinearGridInput ()
 Get the input as a concrete type.
vtkStructuredGrid GetStructuredGridInput ()
 Get the input as a concrete type.
vtkStructuredPoints GetStructuredPointsInput ()
 Get the input as a concrete type.
vtkTable GetTableInput ()
 Get the input as a concrete type.
vtkUnstructuredGrid GetUnstructuredGridInput ()
 Get the input as a concrete type.
override int IsA (string type)
 Undocumented Block.
new vtkProgrammableFilter NewInstance ()
 Undocumented Block.
virtual void SetCopyArrays (bool _arg)
 When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.
void SetExecuteMethod (ProgrammableMethodCallbackType f, IntPtr arg)
 Specify the function to use to operate on the point attribute data. Note that the function takes a single (void *) argument.
void SetExecuteMethodArgDelete (ProgrammableMethodCallbackType f)
 Set the arg delete method. This is used to free user memory.

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "21vtkProgrammableFilter"
 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 vtkProgrammableFilter_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkProgrammableFilter_CopyArraysOff_01 (HandleRef pThis)
static internal void vtkProgrammableFilter_CopyArraysOn_02 (HandleRef pThis)
static internal byte vtkProgrammableFilter_GetCopyArrays_03 (HandleRef pThis)
static internal IntPtr vtkProgrammableFilter_GetGraphInput_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProgrammableFilter_GetPolyDataInput_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProgrammableFilter_GetRectilinearGridInput_06 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProgrammableFilter_GetStructuredGridInput_07 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProgrammableFilter_GetStructuredPointsInput_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProgrammableFilter_GetTableInput_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProgrammableFilter_GetUnstructuredGridInput_10 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkProgrammableFilter_IsA_11 (HandleRef pThis, string type)
static internal int vtkProgrammableFilter_IsTypeOf_12 (string type)
static internal IntPtr vtkProgrammableFilter_NewInstance_14 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProgrammableFilter_SafeDownCast_15 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkProgrammableFilter_SetCopyArrays_16 (HandleRef pThis, byte _arg)
static internal void vtkProgrammableFilter_SetExecuteMethod_17 (HandleRef pThis, ProgrammableMethodCallbackType f, IntPtr arg)
static internal void vtkProgrammableFilter_SetExecuteMethodArgDelete_18 (HandleRef pThis, ProgrammableMethodCallbackType f)

Static Private Member Functions

static vtkProgrammableFilter ()
 Automatically generated type registration mechanics.

Detailed Description

vtkProgrammableFilter - a user-programmable filter

Description vtkProgrammableFilter is a filter that can be programmed by the user. To use the filter you define a function that retrieves input of the correct type, creates data, and then manipulates the output of the filter. Using this filter avoids the need for subclassing - and the function can be defined in an interpreter wrapper language such as Tcl or Java.

The trickiest part of using this filter is that the input and output methods are unusual and cannot be compile-time type checked. Instead, as a user of this filter it is your responsibility to set and get the correct input and output types.


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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

Undocumented Block.


Member Function Documentation

When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.

When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.

override void Kitware.VTK.vtkProgrammableFilter.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.vtkPassInputTypeAlgorithm.

When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.

Get the input as a concrete type.

Here is the call graph for this function:

Get the input as a concrete type. This method is typically used by the writer of the filter function to get the input as a particular type (i.e., it essentially does type casting). It is the users responsibility to know the correct type of the input data.

Here is the call graph for this function:

Get the input as a concrete type.

Here is the call graph for this function:

Get the input as a concrete type.

Here is the call graph for this function:

Get the input as a concrete type.

Here is the call graph for this function:

Get the input as a concrete type.

Here is the call graph for this function:

Get the input as a concrete type.

Here is the call graph for this function:

override int Kitware.VTK.vtkProgrammableFilter.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

static new int Kitware.VTK.vtkProgrammableFilter.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Signature definition for programmable method callbacks. Methods passed to SetExecuteMethod or SetExecuteMethodArgDelete must conform to this signature. The presence of this typedef is useful for reference and for external analysis tools, but it cannot be used in the method signatures in these header files themselves because it prevents the internal VTK wrapper generators from wrapping these methods.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkProgrammableFilter.SetCopyArrays ( bool  _arg) [virtual]

When CopyArrays is true, all arrays are copied to the output iff input and output are of the same type. False by default.

Specify the function to use to operate on the point attribute data. Note that the function takes a single (void *) argument.

Set the arg delete method. This is used to free user memory.

static internal void Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_CopyArraysOff_01 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_CopyArraysOn_02 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetCopyArrays_03 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetGraphInput_04 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetPolyDataInput_05 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetRectilinearGridInput_06 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetStructuredGridInput_07 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetStructuredPointsInput_08 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetTableInput_09 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_GetUnstructuredGridInput_10 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_IsA_11 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_IsTypeOf_12 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_NewInstance_14 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_SafeDownCast_15 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_SetCopyArrays_16 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_SetExecuteMethod_17 ( HandleRef  pThis,
ProgrammableMethodCallbackType  f,
IntPtr  arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkProgrammableFilter.MRClassNameKey = "21vtkProgrammableFilter" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

new const string Kitware.VTK.vtkProgrammableFilter.MRFullTypeName = "Kitware.VTK.vtkProgrammableFilter"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.


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