Documentation for vtkCellDataToPointData

vtkCellDataToPointData - map cell data to point data

Super Class: vtkDataSetToDataSetFilter

Description:

vtkCellDataToPointData is a filter that transforms cell data (i.e., data specified per cell) into point data (i.e., data specified at cell points). The method of transformation is based on averaging the data values of all cells using a particular point. Optionally, the input cell 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 vtkPointDataToCellData

 

Methods:

void vtkCellDataToPointData ()
static vtkCellDataToPointData *New ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
void SetPassCellData (int )
int GetPassCellData ()
void PassCellDataOn ()
void PassCellDataOff ()
void Execute ()

 

Detailed Method Descriptions:

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

void SetPassCellData (int )
int GetPassCellData ()
void PassCellDataOn ()
void PassCellDataOff ()