Documentation for vtkMaskPoints

vtkMaskPoints - selectively filter points

Super Class: vtkDataSetToPolyDataFilter

Description:

vtkMaskPoints is a filter that passes through points and point attributes from input dataset. (Other geometry is not passed through.) It is possible to mask every nth point, and to specify an initial offset to begin masking from. A special random mode feature enables random selection of points.

 

Methods:

void vtkMaskPoints ()
static vtkMaskPoints *New ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
void SetOnRatio (int )
int GetOnRatio ()
void SetMaximumNumberOfPoints (int )
int GetMaximumNumberOfPoints ()
void SetOffset (int )
int GetOffset ()
void SetRandomMode (int )
int GetRandomMode ()
void RandomModeOn ()
void RandomModeOff ()
void Execute ()

 

Detailed Method Descriptions:

Turn on every nth point.

void SetOnRatio (int )
int GetOnRatio ()

Limit the number of points that can be passed through.

void SetMaximumNumberOfPoints (int )
int GetMaximumNumberOfPoints ()

Start with this point.

void SetOffset (int )
int GetOffset ()

Special flag causes randomization of point selection. If this mode is on, statistically every nth point (i.e., OnRatio) will be displayed.

void SetRandomMode (int )
int GetRandomMode ()
void RandomModeOn ()
void RandomModeOff ()