#include <vtkAppendFilter.h>
Inheritance diagram for vtkAppendFilter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | AddInput (vtkDataSet *in) |
vtkDataSet * | GetInput (int idx) |
vtkDataSet * | GetInput () |
void | RemoveInput (vtkDataSet *in) |
vtkDataSetCollection * | GetInputList () |
void | AddInput (vtkDataSet &in) |
void | RemoveInput (vtkDataSet &in) |
Static Public Methods | |
vtkAppendFilter * | New () |
int | IsTypeOf (const char *type) |
vtkAppendFilter * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkAppendFilter () | |
~vtkAppendFilter () | |
vtkAppendFilter (const vtkAppendFilter &) | |
void | operator= (const vtkAppendFilter &) |
void | Execute () |
Protected Attributes | |
vtkDataSetCollection * | InputList |
vtkAppendFilter is a filter that appends one of more datasets into a single unstructured grid. All geometry is extracted and appended, but point attributes (i.e., scalars, vectors, normals) are extracted and appended only if all datasets have the point attributes available. (For example, if one dataset has scalars but another does not, scalars will not be appended.)
|
For legacy compatibility. Do not use. |
|
Add a dataset to the list of data to append. |
|
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 vtkDataSetToUnstructuredGridFilter. |
|
Get any input of this filter. |
|
Returns a copy of the input array. Modifications to this list will not be reflected in the actual inputs. |
|
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 vtkDataSetToUnstructuredGridFilter. |
|
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 vtkDataSetToUnstructuredGridFilter. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkUnstructuredGridSource. |
|
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. |
|
Remove a dataset from the list of data to append. |
|
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 vtkDataSetToUnstructuredGridFilter. |