Documentation for vtkStructuredPointsCollection

vtkStructuredPointsCollection - maintain a list of structured points data objects

Super Class: vtkCollection

Description:

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

 

Methods:

static vtkStructuredPointsCollection *New ()
const char *GetClassName ()
void AddItem (vtkStructuredPoints *)
void RemoveItem (vtkStructuredPoints *)
int IsItemPresent (vtkStructuredPoints *)
vtkStructuredPoints *GetNextItem ()

 

Detailed Method Descriptions:

Add a pointer to a vtkStructuredPoints to the list.

void AddItem (vtkStructuredPoints *)

Remove a pointer to a vtkStructuredPoints from the list.

void RemoveItem (vtkStructuredPoints *)

Determine whether a particular pointer to a vtk StructuredPoints is in the list. Returns its position in the list.

int IsItemPresent (vtkStructuredPoints *)

Get the next item in the collection. NULL is returned if the collection is exhausted.

vtkStructuredPoints *GetNextItem ()