NAME
vtkVolumeCollection - a list of new volumes
SYNOPSIS
#include "/opt/vtk-c++/graphics/vtkVolumeCollection.h"
class VTK_EXPORT vtkVolumeCollection : public vtkCollection
static vtkVolumeCollection *New() {return new vtkVolumeCollection;};
const char *GetClassName() {return "vtkVolumeCollection";};
void AddItem(vtkVolume *a);
void RemoveItem(vtkVolume *a);
int IsItemPresent(vtkVolume *a);
vtkVolume *GetNextItem();
DESCRIPTION
vtkVolumeCollection represents and provides methods to manipulate a list of volumes (i.e., vtkVolume and subclasses). The list is unsorted and duplicate entries are not prevented.
SEE ALSO
vtkCollection vtkVolume
SUMMARY
void AddItem(vtkVolume *a)
Add a volume to the list.
void RemoveItem(vtkVolume *a)
Remove a volume from the list.
int IsItemPresent(vtkVolume *a)
Determine whether a particular volume is present. Returns its position in the list.
vtkVolume *GetNextItem()
Get the next volume in the list. Return NULL when the end of the list is reached.