Documentation for vtkPointDataToCellData

vtkPointDataToCellData - map point data to cell data

Super Class: vtkDataSetToDataSetFilter

Description:

vtkPointDataToCellData is a filter that transforms point data (i.e., data specified per point) into cell data (i.e., data specified per cell). The method of transformation is based on averaging the data values of all points defining a particular cell. Optionally, the input point data can be passed through to the output as well.

 

Caveats:

This filter is an abstract filter, that is, the output is an abstract type (i.e., vtkDataSet). Use the convenience methods (e.g., vtkGetPolyDataOutput(), GetStructuredPointsOutput(), etc.) to get the type of output you want.

 

See Also:

vtkDataSetToDataSetFilter vtkPointData vtkCellData vtkCellDataToPointData

 

Methods:

void vtkPointDataToCellData ()
static vtkPointDataToCellData *New ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
void SetPassPointData (int )
int GetPassPointData ()
void PassPointDataOn ()
void PassPointDataOff ()
void Execute ()

 

Detailed Method Descriptions:

Control whether the input point data is to be passed to the output. If on, then the input point data is passed through to the output; otherwise, only generated point data is placed into the output.

void SetPassPointData (int )
int GetPassPointData ()
void PassPointDataOn ()
void PassPointDataOff ()