#include <vtkIdFilter.h>
Inheritance diagram for vtkIdFilter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetPointIds (int) |
virtual int | GetPointIds () |
virtual void | PointIdsOn () |
virtual void | PointIdsOff () |
virtual void | SetCellIds (int) |
virtual int | GetCellIds () |
virtual void | CellIdsOn () |
virtual void | CellIdsOff () |
virtual void | SetFieldData (int) |
virtual int | GetFieldData () |
virtual void | FieldDataOn () |
virtual void | FieldDataOff () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkIdFilter * | SafeDownCast (vtkObject *o) |
vtkIdFilter * | New () |
Protected Methods | |
vtkIdFilter () | |
~vtkIdFilter () | |
vtkIdFilter (const vtkIdFilter &) | |
void | operator= (const vtkIdFilter &) |
void | Execute () |
Protected Attributes | |
int | PointIds |
int | CellIds |
int | FieldData |
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.
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
Construct object with PointIds and CellIds on; and ids being generated as scalars. Reimplemented from vtkDataSetSource. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkSource. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
Enable/disable the generation of point ids. |
|
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. |
|
Enable/disable the generation of point ids. |