#include <vtkPolyDataStreamer.h>
Inheritance diagram for vtkPolyDataStreamer:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetNumberOfStreamDivisions (int num) |
int | GetNumberOfStreamDivisions () |
virtual void | SetColorByPiece (int) |
virtual int | GetColorByPiece () |
virtual void | ColorByPieceOn () |
virtual void | ColorByPieceOff () |
Static Public Methods | |
vtkPolyDataStreamer * | New () |
int | IsTypeOf (const char *type) |
vtkPolyDataStreamer * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkPolyDataStreamer () | |
~vtkPolyDataStreamer () | |
vtkPolyDataStreamer (const vtkPolyDataStreamer &) | |
void | operator= (const vtkPolyDataStreamer &) |
void | Execute () |
void | ComputeInputUpdateExtents (vtkDataObject *output) |
void | ComputeNumberOfStreamDivisionsFromMemoryLimit () |
Protected Attributes | |
int | UseMemoryLimit |
unsigned long | MemoryLimit |
int | NumberOfStreamDivisions |
int | ColorByPiece |
vtkPolyDataStreamer initiates streaming by requesting pieces from its single input it appends these pieces it to the requested output.
|
What is the input update extent that is required to produce the desired output? By default, the whole input is always required but this is overridden in many subclasses. Reimplemented from vtkPolyDataSource. |
|
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 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 vtkTypeMacro found in vtkSetGet.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 vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkPolyDataToPolyDataFilter. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkPolyDataSource. |
|
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 vtkPolyDataToPolyDataFilter. |
|
By default, this option is off. When it is on, cell scalars are generated based on which piece they are in. |
|
Ideally, this filter should determine how to break up the input by a limit on the memory use. Not all polydata sources and filters set the EstimatedMemorySize correctly. The current method is to specify the concrete number of divisions. Any request wil be further split by this factor. |