#include <vtkPointSetToPointSetFilter.h>
Inheritance diagram for vtkPointSetToPointSetFilter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | SetInput (vtkPointSet *input) |
vtkPointSet * | GetInput () |
vtkPointSet * | GetOutput () |
vtkPointSet * | GetOutput (int idx) |
vtkPolyData * | GetPolyDataOutput () |
vtkStructuredGrid * | GetStructuredGridOutput () |
vtkUnstructuredGrid * | GetUnstructuredGridOutput () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkPointSetToPointSetFilter * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkPointSetToPointSetFilter () | |
~vtkPointSetToPointSetFilter () | |
vtkPointSetToPointSetFilter (const vtkPointSetToPointSetFilter &) | |
void | operator= (const vtkPointSetToPointSetFilter &) |
vtkPointSetToPointSetFilter is an abstract filter class whose subclasses take as input a point set and generates a point set on output. At a minimum, the concrete subclasses of vtkPointSetToPointSetFilter modify their point coordinates. They never modify their topological form, however.
This is an abstract filter type. What that means is that the output of the filter is an abstract type (i.e., vtkPointSet), 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 vtkPointSetToPointSetFilter 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(), GetStructuredGridOutput(), etc.).
Definition at line 75 of file vtkPointSetToPointSetFilter.h.
|
|
|
|
|
Definition at line 104 of file vtkPointSetToPointSetFilter.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 vtkPointSetSource. Reimplemented in vtkTransformFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, and vtkWarpVector. |
|
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 vtkPointSetSource. Reimplemented in vtkTransformFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, and vtkWarpVector. |
|
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 vtkPointSetSource. Reimplemented in vtkTransformFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, and vtkWarpVector. |
|
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 vtkPointSetSource. Reimplemented in vtkTransformFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, and vtkWarpVector. |
|
Specify the input data or filter. |
|
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 filter objects. Reimplemented from vtkPointSetSource. |
|
Reimplemented from vtkPointSetSource. Definition at line 89 of file vtkPointSetToPointSetFilter.h. |
|
Get the output as vtkPolyData. Performs run-time checking. |
|
Get the output as vtkStructuredGrid. Performs run-time checking. |
|
Get the output as vtkUnstructuredGrid. Performs run-time checking. |
|
Definition at line 105 of file vtkPointSetToPointSetFilter.h. |