ActiViz .NET
5.8.0
|
vtkProgrammableFilter - a user-programmable filter More...
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. |
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.
static Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter | ( | ) | [static, private] |
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.
virtual void Kitware.VTK.vtkProgrammableFilter.CopyArraysOff | ( | ) | [virtual] |
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 Kitware.VTK.vtkProgrammableFilter.CopyArraysOn | ( | ) | [virtual] |
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.
virtual bool Kitware.VTK.vtkProgrammableFilter.GetCopyArrays | ( | ) | [virtual] |
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.
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.
Get the input as a concrete type.
Get the input as a concrete type.
Get the input as a concrete type.
Get the input as a concrete type.
Get the input as a concrete type.
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.
static new vtkProgrammableFilter Kitware.VTK.vtkProgrammableFilter.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.
delegate void Kitware.VTK.vtkProgrammableFilter.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.
static new vtkProgrammableFilter Kitware.VTK.vtkProgrammableFilter.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.
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.
void Kitware.VTK.vtkProgrammableFilter.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 Kitware.VTK.vtkProgrammableFilter.SetExecuteMethodArgDelete | ( | ProgrammableMethodCallbackType | f | ) |
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] |
static internal void Kitware.VTK.vtkProgrammableFilter.vtkProgrammableFilter_SetExecuteMethodArgDelete_18 | ( | HandleRef | pThis, |
ProgrammableMethodCallbackType | f | ||
) | [private] |
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.