Man Page for vtkDataSetToDataSetFilter
Table of Contents

NAME

vtkDataSetToDataSetFilter - abstract filter class

SYNOPSIS


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

class VTK_EXPORT vtkDataSetToDataSetFilter : public vtkDataSetFilter

static vtkDataSetToDataSetFilter *New() {return new vtkDataSetToDataSetFilter;};
const char *GetClassName() {return "vtkDataSetToDataSetFilter";};
vtkDataSetToDataSetFilter() {this->Output = NULL;};
void SetInput(vtkDataSet *input);
void SetInput(vtkImageCache *cache)
{this->SetInput(cache->GetImageToStructuredPoints()->GetOutput());}
void Update();
vtkDataSet *GetOutput();

DESCRIPTION

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.).

SEE ALSO

vtkBrownianPoints vtkProbeFilter vtkThresholdTextureCoords vtkDicer vtkElevationFilter vtkImplicitTextureCoords vtkTextureMapToBox vtkTextureMapToPlane vtkVectorDot vtkVectorNorm

SUMMARY

void SetInput(vtkDataSet *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.

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


Table of Contents