ActiViz .NET
5.8.0
|
vtkProgrammableSource - generate source dataset via a user-specified function More...
Public Member Functions | |
vtkProgrammableSource (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkProgrammableSource () | |
Undocumented Block. | |
delegate void | ProgrammableMethodCallbackType (IntPtr arg0) |
Signature definition for programmable method callbacks. Methods passed to SetExecuteMethod, SetExecuteMethodArgDelete or SetRequestInformationMethod 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. | |
new vtkPolyData | GetPolyDataOutput () |
Get the output as a concrete type. This method is typically used by the writer of the source function to get the output as a particular type (i.e., it essentially does type casting). It is the users responsibility to know the correct type of the output data. | |
new vtkRectilinearGrid | GetRectilinearGridOutput () |
Get the output as a concrete type. | |
new vtkStructuredGrid | GetStructuredGridOutput () |
Get the output as a concrete type. | |
new vtkStructuredPoints | GetStructuredPointsOutput () |
Get the output as a concrete type. | |
new vtkUnstructuredGrid | GetUnstructuredGridOutput () |
Get the output as a concrete type. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkProgrammableSource | NewInstance () |
Undocumented Block. | |
void | SetExecuteMethod (ProgrammableMethodCallbackType f, IntPtr arg) |
Specify the function to use to generate the source 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. | |
void | SetRequestInformationMethod (ProgrammableMethodCallbackType f) |
Specify the function to use to fill in information about the source data. | |
Static Public Member Functions | |
static new vtkProgrammableSource | New () |
Undocumented Block. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkProgrammableSource | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkProgrammableSource" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "21vtkProgrammableSource" |
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 | vtkProgrammableSource_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkProgrammableSource_GetPolyDataOutput_01 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkProgrammableSource_GetRectilinearGridOutput_02 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkProgrammableSource_GetStructuredGridOutput_03 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkProgrammableSource_GetStructuredPointsOutput_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkProgrammableSource_GetUnstructuredGridOutput_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkProgrammableSource_IsA_06 (HandleRef pThis, string type) |
static internal int | vtkProgrammableSource_IsTypeOf_07 (string type) |
static internal IntPtr | vtkProgrammableSource_NewInstance_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkProgrammableSource_SafeDownCast_10 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkProgrammableSource_SetExecuteMethod_11 (HandleRef pThis, ProgrammableMethodCallbackType f, IntPtr arg) |
static internal void | vtkProgrammableSource_SetExecuteMethodArgDelete_12 (HandleRef pThis, ProgrammableMethodCallbackType f) |
static internal void | vtkProgrammableSource_SetRequestInformationMethod_13 (HandleRef pThis, ProgrammableMethodCallbackType f) |
Static Private Member Functions | |
static | vtkProgrammableSource () |
Automatically generated type registration mechanics. |
vtkProgrammableSource - generate source dataset via a user-specified function
Description vtkProgrammableSource is a source object that is programmable by the user. To use this object, you must specify a function that creates the output. It is possible to generate an output dataset of any (concrete) type; it is up to the function to properly initialize and define the output. Typically, you use one of the methods to get a concrete output type (e.g., GetPolyDataOutput() or GetStructuredPointsOutput()), and then manipulate the output in the user-specified function.
Example use of this include writing a function to read a data file or interface to another system. (You might want to do this in favor of deriving a new class.) Another important use of this class is that it allows users of interpreters (e.g., Tcl or Java) the ability to write source objects without having to recompile C++ code or generate new libraries.
vtkProgrammableFilter vtkProgrammableAttributeDataFilter vtkProgrammableDataObjectSource
static Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
override void Kitware.VTK.vtkProgrammableSource.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.vtkDataSetAlgorithm.
Get the output as a concrete type. This method is typically used by the writer of the source function to get the output as a particular type (i.e., it essentially does type casting). It is the users responsibility to know the correct type of the output data.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
Get the output as a concrete type.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
Get the output as a concrete type.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
Get the output as a concrete type.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
Get the output as a concrete type.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
override int Kitware.VTK.vtkProgrammableSource.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
static new int Kitware.VTK.vtkProgrammableSource.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
static new vtkProgrammableSource Kitware.VTK.vtkProgrammableSource.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
delegate void Kitware.VTK.vtkProgrammableSource.ProgrammableMethodCallbackType | ( | IntPtr | arg0 | ) |
Signature definition for programmable method callbacks. Methods passed to SetExecuteMethod, SetExecuteMethodArgDelete or SetRequestInformationMethod 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 vtkProgrammableSource Kitware.VTK.vtkProgrammableSource.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
void Kitware.VTK.vtkProgrammableSource.SetExecuteMethod | ( | ProgrammableMethodCallbackType | f, |
IntPtr | arg | ||
) |
Specify the function to use to generate the source data. Note that the function takes a single (void *) argument.
void Kitware.VTK.vtkProgrammableSource.SetExecuteMethodArgDelete | ( | ProgrammableMethodCallbackType | f | ) |
Set the arg delete method. This is used to free user memory.
void Kitware.VTK.vtkProgrammableSource.SetRequestInformationMethod | ( | ProgrammableMethodCallbackType | f | ) |
Specify the function to use to fill in information about the source data.
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_GetPolyDataOutput_01 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_GetRectilinearGridOutput_02 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_GetStructuredGridOutput_03 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_GetStructuredPointsOutput_04 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_GetUnstructuredGridOutput_05 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_IsA_06 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_IsTypeOf_07 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_NewInstance_09 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_SafeDownCast_10 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_SetExecuteMethod_11 | ( | HandleRef | pThis, |
ProgrammableMethodCallbackType | f, | ||
IntPtr | arg | ||
) | [private] |
static internal void Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_SetExecuteMethodArgDelete_12 | ( | HandleRef | pThis, |
ProgrammableMethodCallbackType | f | ||
) | [private] |
static internal void Kitware.VTK.vtkProgrammableSource.vtkProgrammableSource_SetRequestInformationMethod_13 | ( | HandleRef | pThis, |
ProgrammableMethodCallbackType | f | ||
) | [private] |
new readonly string Kitware.VTK.vtkProgrammableSource.MRClassNameKey = "21vtkProgrammableSource" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
new const string Kitware.VTK.vtkProgrammableSource.MRFullTypeName = "Kitware.VTK.vtkProgrammableSource" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.