Documentation for vtkIdFilter

vtkIdFilter - generate scalars or field data from point and cell ids

Super Class: vtkDataSetToDataSetFilter

Description:

vtkIdFilter is a filter to that generates scalars or field data using cell and point ids. That is, the point attribute data scalars or field data are generated from the point ids, and the cell attribute data scalars or field data are generated from the the cell ids. Typically this filter is used with vtkLabeledDataMapper (and possibly vtkSelectVisiblePoints) to create labels for points and cells, or labels for the point or cell data scalar values.

 

Methods:

void vtkIdFilter ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
static vtkIdFilter *New ()
void SetPointIds (int )
int GetPointIds ()
void PointIdsOn ()
void PointIdsOff ()
void SetCellIds (int )
int GetCellIds ()
void CellIdsOn ()
void CellIdsOff ()
void SetFieldData (int )
int GetFieldData ()
void FieldDataOn ()
void FieldDataOff ()
void Execute ()

 

Detailed Method Descriptions:

Construct object with PointIds and CellIds on; and ids being generated as scalars.

static vtkIdFilter *New ()

Enable/disable the generation of point ids.

void SetPointIds (int )
int GetPointIds ()
void PointIdsOn ()
void PointIdsOff ()
void SetCellIds (int )
int GetCellIds ()
void CellIdsOn ()
void CellIdsOff ()

Set/Get the flag which controls whether to generate scalar data or field data. If this flag is off, scalar data is generated. Otherwise, field data is generated.

void SetFieldData (int )
int GetFieldData ()
void FieldDataOn ()
void FieldDataOff ()