Man Page for vtkPointSetToPointSetFilter
Table of Contents

NAME

vtkPointSetToPointSetFilter - abstract filter class

SYNOPSIS


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

class VTK_EXPORT vtkPointSetToPointSetFilter : public vtkPointSetFilter

static vtkPointSetToPointSetFilter *New() {return new vtkPointSetToPointSetFilter;};
const char *GetClassName() {return "vtkPointSetToPointSetFilter";};
vtkPointSetToPointSetFilter() {this->Output = NULL;};
void SetInput(vtkPointSet *input);
void Update();
vtkPointSet *GetOutput();

DESCRIPTION

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.

SEE ALSO

vtkTransformFilter vtkWarpScalar vtkWarpTo vtkWarpVector

SUMMARY

void SetInput(vtkPointSet *input)
Specify the input data or filter.

void Update()
Update input to this filter and the filter itself. Note that we are overloading this method because the output is an abstract dataset type. This requires special treatment.

vtkPointSet *GetOutput()
Get the output of this filter. If output is NULL, then input hasn't been set, which is necessary for abstract filter objects.


Table of Contents