ActiViz .NET
5.8.0
|
vtkDataSetToDataSetFilter - abstract filter class More...
Public Member Functions | |
vtkDataSetToDataSetFilter (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
override void | ComputeInputUpdateExtents (vtkDataObject output) |
By default copy the output update extent to the input. | |
vtkDataSet | GetInput () |
Get the input data or filter. | |
new vtkDataSet | GetOutput () |
Get the output of this filter. If output is NULL then input hasn't been set which is necessary for abstract objects. | |
new vtkDataSet | GetOutput (int idx) |
Get the output of this filter. If output is NULL then input hasn't been set which is necessary for abstract objects. | |
virtual vtkPolyData | GetPolyDataOutput () |
Get the output as vtkPolyData. | |
virtual vtkRectilinearGrid | GetRectilinearGridOutput () |
Get the output as vtkRectilinearGrid. | |
virtual vtkStructuredGrid | GetStructuredGridOutput () |
Get the output as vtkStructuredGrid. | |
virtual vtkStructuredPoints | GetStructuredPointsOutput () |
Get the output as vtkStructuredPoints. | |
virtual vtkUnstructuredGrid | GetUnstructuredGridOutput () |
Get the output as vtkUnstructuredGrid. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkDataSetToDataSetFilter | NewInstance () |
Undocumented Block. | |
void | SetInput (vtkDataSet input) |
Specify the input data or filter. | |
Static Public Member Functions | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkDataSetToDataSetFilter | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkDataSetToDataSetFilter" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "25vtkDataSetToDataSetFilter" |
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 void | vtkDataSetToDataSetFilter_ComputeInputUpdateExtents_01 (HandleRef pThis, HandleRef output) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetInput_02 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetOutput_03 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetOutput_04 (HandleRef pThis, int idx, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetPolyDataOutput_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetRectilinearGridOutput_06 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetStructuredGridOutput_07 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetStructuredPointsOutput_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_GetUnstructuredGridOutput_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkDataSetToDataSetFilter_IsA_10 (HandleRef pThis, string type) |
static internal int | vtkDataSetToDataSetFilter_IsTypeOf_11 (string type) |
static internal IntPtr | vtkDataSetToDataSetFilter_NewInstance_12 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkDataSetToDataSetFilter_SafeDownCast_13 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkDataSetToDataSetFilter_SetInput_14 (HandleRef pThis, HandleRef input) |
Static Private Member Functions | |
static | vtkDataSetToDataSetFilter () |
Automatically generated type registration mechanics. |
vtkDataSetToDataSetFilter - abstract filter class
Description vtkDataSetToDataSetFilter is an abstract filter class. Subclasses of vtkDataSetToDataSetFilter take a dataset as input and create a dataset as output. The form of the input geometry is not changed in these filters, only the point attributes (e.g. scalars, vectors, etc.).
This is an abstract filter type. What that means is that the output of the filter is an abstract type (i.e., vtkDataSet), no matter what the input of the filter is. This can cause problems connecting together filters due to the change in dataset type. (For example, in a series of filters processing vtkPolyData, when a vtkDataSetToDataSetFilter or subclass is introduced into the pipeline, if the filter downstream of it takes vtkPolyData as input, the pipeline connection cannot be made.) To get around this problem, use one of the convenience methods to return a concrete type (e.g., vtkGetPolyDataOutput(), GetStructuredPointsOutput(), etc.).
static Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
override void Kitware.VTK.vtkDataSetToDataSetFilter.ComputeInputUpdateExtents | ( | vtkDataObject | output | ) | [virtual] |
By default copy the output update extent to the input.
Reimplemented from Kitware.VTK.vtkSource.
override void Kitware.VTK.vtkDataSetToDataSetFilter.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.vtkDataSetSource.
Get the input data or filter.
Get the output of this filter. If output is NULL then input hasn't been set which is necessary for abstract objects.
Reimplemented from Kitware.VTK.vtkDataSetSource.
new vtkDataSet Kitware.VTK.vtkDataSetToDataSetFilter.GetOutput | ( | int | idx | ) |
Get the output of this filter. If output is NULL then input hasn't been set which is necessary for abstract objects.
Reimplemented from Kitware.VTK.vtkDataSetSource.
virtual vtkPolyData Kitware.VTK.vtkDataSetToDataSetFilter.GetPolyDataOutput | ( | ) | [virtual] |
virtual vtkRectilinearGrid Kitware.VTK.vtkDataSetToDataSetFilter.GetRectilinearGridOutput | ( | ) | [virtual] |
virtual vtkStructuredGrid Kitware.VTK.vtkDataSetToDataSetFilter.GetStructuredGridOutput | ( | ) | [virtual] |
virtual vtkStructuredPoints Kitware.VTK.vtkDataSetToDataSetFilter.GetStructuredPointsOutput | ( | ) | [virtual] |
virtual vtkUnstructuredGrid Kitware.VTK.vtkDataSetToDataSetFilter.GetUnstructuredGridOutput | ( | ) | [virtual] |
override int Kitware.VTK.vtkDataSetToDataSetFilter.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetSource.
static new int Kitware.VTK.vtkDataSetToDataSetFilter.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetSource.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetSource.
static new vtkDataSetToDataSetFilter Kitware.VTK.vtkDataSetToDataSetFilter.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetSource.
void Kitware.VTK.vtkDataSetToDataSetFilter.SetInput | ( | vtkDataSet | input | ) |
Specify the input data or filter.
static internal void Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_ComputeInputUpdateExtents_01 | ( | HandleRef | pThis, |
HandleRef | output | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetInput_02 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetOutput_03 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetOutput_04 | ( | HandleRef | pThis, |
int | idx, | ||
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetPolyDataOutput_05 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetRectilinearGridOutput_06 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetStructuredGridOutput_07 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetStructuredPointsOutput_08 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_GetUnstructuredGridOutput_09 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_IsA_10 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_IsTypeOf_11 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_NewInstance_12 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_SafeDownCast_13 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkDataSetToDataSetFilter.vtkDataSetToDataSetFilter_SetInput_14 | ( | HandleRef | pThis, |
HandleRef | input | ||
) | [private] |
new readonly string Kitware.VTK.vtkDataSetToDataSetFilter.MRClassNameKey = "25vtkDataSetToDataSetFilter" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataSetSource.
new const string Kitware.VTK.vtkDataSetToDataSetFilter.MRFullTypeName = "Kitware.VTK.vtkDataSetToDataSetFilter" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataSetSource.