#include <vtkStripper.h>
Inheritance diagram for vtkStripper:
vtkStripper is a filter that generates triangle strips and/or poly-lines from input polygons, triangle strips, and lines. Input polygons are assembled into triangle strips only if they are triangles; other types of polygons are passed through to the output and not stripped. (Use vtkTriangleFilter to triangulate non-triangular polygons prior to running this filter if you need to strip all the data.) The filter will pass through (to the output) vertices if they are present in the input polydata.
The ivar MaximumLength can be used to control the maximum allowable triangle strip and poly-line length.
Definition at line 67 of file vtkStripper.h.
Public Types | |
typedef vtkPolyDataToPolyDataFilter | Superclass |
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetMaximumLength (int) |
virtual int | GetMaximumLength () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkStripper * | SafeDownCast (vtkObject *o) |
vtkStripper * | New () |
Protected Methods | |
vtkStripper () | |
~vtkStripper () | |
void | Execute () |
Protected Attributes | |
int | MaximumLength |
|
Reimplemented from vtkPolyDataToPolyDataFilter. Definition at line 70 of file vtkStripper.h. |
|
|
|
Definition at line 85 of file vtkStripper.h. |
|
Reimplemented from vtkPolyDataToPolyDataFilter. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkPolyDataToPolyDataFilter. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkPolyDataToPolyDataFilter. |
|
Reimplemented from vtkPolyDataToPolyDataFilter. |
|
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 vtkPolyDataToPolyDataFilter. |
|
Construct object with MaximumLength set to 1000. Reimplemented from vtkObject. |
|
Specify the maximum number of triangles in a triangle strip, and/or the maximum number of lines in a poly-line. |
|
Specify the maximum number of triangles in a triangle strip, and/or the maximum number of lines in a poly-line. |
|
This method is the old style execute method Reimplemented from vtkSource. |
|
Definition at line 90 of file vtkStripper.h. |