Man Page for vtkFilter
Table of Contents

NAME

vtkFilter - abstract class for specifying filter behavior

SYNOPSIS


#include "/opt/vtk-c++/graphics/vtkFilter.h"

class VTK_EXPORT vtkFilter : public vtkSource

vtkFilter();
void PrintSelf(ostream& os, vtkIndent indent);
static vtkFilter *New() {return new vtkFilter;};
const char *GetClassName() {return "vtkFilter";};
void Update();

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

SUMMARY

vtkFilter()
Construct new filter without start or end methods.

void Update()
Update input to this filter and the filter itself.


Table of Contents