Man Page for vtkDataSetCollection
Table of Contents

NAME

vtkDataSetCollection - maintain an unordered list of dataset objects

SYNOPSIS


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

class VTK_EXPORT vtkDataSetCollection : public vtkCollection

static vtkDataSetCollection *New() {return new vtkDataSetCollection;};
const char *GetClassName() {return "vtkDataSetCollection";};
void AddItem(vtkDataSet *);
void RemoveItem(vtkDataSet *);
int IsItemPresent(vtkDataSet *);
vtkDataSet *GetNextItem();

DESCRIPTION

vtkDataSetCollection is an object that creates and manipulates lists of datasets. See also vtkCollection and subclasses.

SUMMARY

void AddItem(vtkDataSet *ds)
Add a dataset to the list.

void RemoveItem(vtkDataSet *ds)
Remove a dataset from the list.

int IsItemPresent(vtkDataSet *ds)
Determine whether a particular dataset is present. Returns its position in the list.

vtkDataSet *GetNextItem()
Get the next dataset in the list.


Table of Contents