#include <vtkDataSetToDataSetFilter.h>
Inheritance diagram for vtkDataSetToDataSetFilter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | SetInput (vtkDataSet *input) |
void | SetInput (vtkImageData *cache) |
vtkDataSet * | GetOutput () |
vtkDataSet * | GetOutput (int idx) |
vtkPolyData * | GetPolyDataOutput () |
vtkStructuredPoints * | GetStructuredPointsOutput () |
vtkStructuredGrid * | GetStructuredGridOutput () |
vtkUnstructuredGrid * | GetUnstructuredGridOutput () |
vtkRectilinearGrid * | GetRectilinearGridOutput () |
vtkDataSet * | GetInput () |
virtual void | ComputeInputUpdateExtents (vtkDataObject *output) |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkDataSetToDataSetFilter * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkDataSetToDataSetFilter () | |
~vtkDataSetToDataSetFilter () | |
vtkDataSetToDataSetFilter (const vtkDataSetToDataSetFilter &) | |
void | operator= (const vtkDataSetToDataSetFilter &) |
void | ExecuteInformation () |
2/17/94 1.8
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.).
Definition at line 83 of file vtkDataSetToDataSetFilter.h.
|
|
|
|
|
Definition at line 125 of file vtkDataSetToDataSetFilter.h. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetSource. Reimplemented in vtkAsynchronousBuffer, vtkCellDerivatives, vtkProjectedTexture, vtkTextureMapToBox, vtkAttributeDataToFieldDataFilter, vtkBrownianPoints, vtkCastToConcrete, vtkCellDataToPointData, vtkDicer, vtkElevationFilter, vtkExtractTensorComponents, vtkFieldDataToAttributeDataFilter, vtkGhostLevelToScalarFilter, vtkIdFilter, vtkImplicitTextureCoords, vtkInterpolateDataSetAttributes, vtkMergeDataObjectFilter, vtkMergeFilter, vtkOBBDicer, vtkPointDataToCellData, vtkProbeFilter, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkSimpleElevationFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkVectorDot, and vtkVectorNorm. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetSource. Reimplemented in vtkAsynchronousBuffer, vtkCellDerivatives, vtkProjectedTexture, vtkTextureMapToBox, vtkAttributeDataToFieldDataFilter, vtkBrownianPoints, vtkCastToConcrete, vtkCellDataToPointData, vtkDicer, vtkElevationFilter, vtkExtractTensorComponents, vtkFieldDataToAttributeDataFilter, vtkGhostLevelToScalarFilter, vtkIdFilter, vtkImplicitTextureCoords, vtkInterpolateDataSetAttributes, vtkMergeDataObjectFilter, vtkMergeFilter, vtkOBBDicer, vtkPointDataToCellData, vtkProbeFilter, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkSimpleElevationFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkVectorDot, and vtkVectorNorm. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetSource. Reimplemented in vtkAsynchronousBuffer, vtkCellDerivatives, vtkProjectedTexture, vtkTextureMapToBox, vtkAttributeDataToFieldDataFilter, vtkBrownianPoints, vtkCastToConcrete, vtkCellDataToPointData, vtkDicer, vtkElevationFilter, vtkExtractTensorComponents, vtkFieldDataToAttributeDataFilter, vtkGhostLevelToScalarFilter, vtkIdFilter, vtkImplicitTextureCoords, vtkInterpolateDataSetAttributes, vtkMergeDataObjectFilter, vtkMergeFilter, vtkOBBDicer, vtkPointDataToCellData, vtkProbeFilter, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkSimpleElevationFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkVectorDot, and vtkVectorNorm. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetSource. Reimplemented in vtkAsynchronousBuffer, vtkCellDerivatives, vtkProjectedTexture, vtkTextureMapToBox, vtkAttributeDataToFieldDataFilter, vtkBrownianPoints, vtkCastToConcrete, vtkCellDataToPointData, vtkDicer, vtkElevationFilter, vtkExtractTensorComponents, vtkFieldDataToAttributeDataFilter, vtkGhostLevelToScalarFilter, vtkIdFilter, vtkImplicitTextureCoords, vtkInterpolateDataSetAttributes, vtkMergeDataObjectFilter, vtkMergeFilter, vtkOBBDicer, vtkPointDataToCellData, vtkProbeFilter, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkSimpleElevationFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkVectorDot, and vtkVectorNorm. |
|
Specify the input data or filter. Referenced by vtkMergeFilter::SetGeometry().
|
|
Definition at line 91 of file vtkDataSetToDataSetFilter.h. |
|
Get the output of this filter. If output is NULL then input hasn't been set which is necessary for abstract objects. Reimplemented from vtkDataSetSource. |
|
Reimplemented from vtkDataSetSource. Definition at line 98 of file vtkDataSetToDataSetFilter.h. |
|
Get the output as vtkPolyData. |
|
Get the output as vtkStructuredPoints. |
|
Get the output as vtkStructuredGrid. |
|
Get the output as vtkUnstructuredGrid. |
|
Get the output as vtkRectilinearGrid. |
|
Get the input data or filter. Referenced by vtkMergeFilter::GetGeometry().
|
|
By default copy the output update extent to the input Reimplemented from vtkSource. Reimplemented in vtkMergeFilter, and vtkProbeFilter. |
|
Definition at line 126 of file vtkDataSetToDataSetFilter.h. |
|
Reimplemented from vtkSource. Reimplemented in vtkCastToConcrete, and vtkProbeFilter. |