Man Page for vtkStructuredPointsCollection
Table of Contents

NAME

vtkStructuredPointsCollection - maintain a list of structured points data objects

SYNOPSIS


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

class VTK_EXPORT vtkStructuredPointsCollection : public vtkCollection

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

DESCRIPTION

vtkStructuredPointsCollection is an object that creates and manipulates lists of structured points datasets. See also vtkCollection and subclasses.

SUMMARY

void AddItem(vtkStructuredPoints *ds)
Add a pointer to a vtkStructuredPoints to the list.

void RemoveItem(vtkStructuredPoints *ds)
Remove a pointer to a vtkStructuredPoints from the list.

int IsItemPresent(vtkStructuredPoints *ds)
Determine whether a particular pointer to a vtk StructuredPoints is in the list. Returns its position in
the list.

vtkStructuredPoints *GetNextItem()
Get the next item in the collection. NULL is returned if the collection is exhausted.


Table of Contents