Man Page for vtkActorCollection
Table of Contents

NAME

vtkActorCollection - a list of actors

SYNOPSIS


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

class VTK_EXPORT vtkActorCollection : public vtkCollection

static vtkActorCollection *New() {return new vtkActorCollection;};
const char *GetClassName() {return "vtkActorCollection";};
void AddItem(vtkActor *a);
void RemoveItem(vtkActor *a);
int IsItemPresent(vtkActor *a);
vtkActor *GetNextItem();
vtkActor *GetLastItem();

DESCRIPTION

vtkActorCollection represents and provides methods to manipulate a list of actors (i.e., vtkActor and subclasses). The list is unsorted and duplicate entries are not prevented.

SEE ALSO

vtkActor vtkCollection

SUMMARY

void AddItem(vtkActor *a)
Add an actor to the list.

void RemoveItem(vtkActor *a)
Remove an actor from the list.

int IsItemPresent(vtkActor *a)
Determine whether a particular actor is present. Returns its position in the list.

vtkActor *GetNextItem()
Get the next actor in the list.

vtkActor *GetLastItem()
Get the last actor in the list.


Table of Contents