Documentation for vtkFilter

vtkFilter - abstract class for specifying filter behavior

Super Class: vtkSource

Description:

vtkFilter is an abstract class that specifies the interface for data filters. Each filter must have an Update() and Execute() method that will cause the filter to execute if its input or the filter itself has been modified since the last execution time.

 

See Also:

vtkSource vtkAppendPolyData vtkBooleanStructuredPoints vtkExtractVectorComponents vtkMergeFilter vtkDataSetFilter vtkPointSetFilter vtkPolyDataFilter vtkStructuredGridFilter vtkStructuredPointsFilter vtkUnstructuredGridFilter

 

Methods:

void vtkFilter ()
void vtkFilter ()
void PrintSelf (unknown & ,vtkIndent )
const char *GetClassName ()
static vtkFilter *New ()
void Update ()
void Execute ()

 

Detailed Method Descriptions:

Construct new filter without start or end methods.

static vtkFilter *New ()

All filters must provide a method to update the visualization pipeline. (Method interface inherited from vtkSource.)

void Update ()