Man Page for vtkAppendFilter
Table of Contents

NAME

vtkAppendFilter - appends one or more datasets together into a single unstructured grid

SYNOPSIS


#include "/opt/vtk-c++/graphics/vtkAppendFilter.h"

class VTK_EXPORT vtkAppendFilter : public vtkDataSetToUnstructuredGridFilter

vtkAppendFilter();
static vtkAppendFilter *New() {return new vtkAppendFilter;};
const char *GetClassName() {return "vtkAppendFilter";};
void PrintSelf(ostream& os, vtkIndent indent);
void AddInput(vtkDataSet *in);
void AddInput(vtkDataSet& in) {this->AddInput(&in);};
void RemoveInput(vtkDataSet *in);
void RemoveInput(vtkDataSet& in) {this->RemoveInput(&in);};
vtkDataSetCollection *GetInputList() {return &(this->InputList);};
void Update();

DESCRIPTION

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.)

SEE ALSO

vtkAppendPolyData

SUMMARY

void AddInput(vtkDataSet *ds)
Add a dataset to the list of data to append.

void RemoveInput(vtkDataSet *ds)
Remove a dataset from the list of data to append.


Table of Contents