Documentation for vtkStripper

vtkStripper - create triangle strips and/or poly-lines

Super Class: vtkPolyDataToPolyDataFilter

Description:

vtkStripper is a filter that generates triangle strips and/or poly-lines from input polygons, triangle strips, and lines. Input polygons are assumed to be triangles. (Use vtkTriangleFilter to triangulate non-triangular polygons.) The filter will pass through (to the output) vertices if they are present in the input poly-data. The ivar MaximumLength can be used to control the maximum allowable triangle strip and poly-line length.

 

Caveats:

If triangle strips or poly-lines exist in the input data they will be passed through to the output data. This filter will only construct triangle strips if triangle polygons are available; and will only construct poly-lines if lines are available.

 

See Also:

vtkTriangleFilter

 

Methods:

void vtkStripper ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
static vtkStripper *New ()
void SetMaximumLength (int )
int GetMaximumLength ()
void Execute ()

 

Detailed Method Descriptions:

Construct object with MaximumLength set to 1000.

static vtkStripper *New ()

Specify the maximum number of triangles in a triangle strip, and/or the maximum number of lines in a poly-line.

void SetMaximumLength (int )
int GetMaximumLength ()