Documentation for vtkPolyDataCollection

vtkPolyDataCollection - maintain a list of polygonal data objects

Super Class: vtkCollection

Description:

vtkPolyDataCollection is an object that creates and manipulates lists of datasets of type vtkPolyData.

 

See Also:

vtkDataSetCollection vtkCollection

 

Methods:

static vtkPolyDataCollection *New ()
const char *GetClassName ()
void AddItem (vtkPolyData *)
void RemoveItem (vtkPolyData *)
int IsItemPresent (vtkPolyData *)
vtkPolyData *GetNextItem ()

 

Detailed Method Descriptions:

Add a poly data to the list.

void AddItem (vtkPolyData *)

Remove an poly data from the list.

void RemoveItem (vtkPolyData *)

Determine whether a particular poly data is present. Returns its position in the list.

int IsItemPresent (vtkPolyData *)

Get the next poly data in the list.

vtkPolyData *GetNextItem ()