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

vtkProgrammableSource - generate source dataset via a user-specified function More...

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

List of all members.

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.

Detailed Description

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


Constructor & Destructor Documentation

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.


Member Function Documentation

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.

Here is the call graph for this function:

Get the output as a concrete type.

Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.

Here is the call graph for this function:

Get the output as a concrete type.

Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.

Here is the call graph for this function:

Get the output as a concrete type.

Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.

Here is the call graph for this function:

Get the output as a concrete type.

Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.

Here is the call graph for this function:

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.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.

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.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.

Here is the call graph for this function:

Specify the function to use to generate the source data. Note that the function takes a single (void *) argument.

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

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]

Member Data Documentation

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.


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