Documentation for vtkActorCollection

vtkActorCollection - a list of actors

Super Class: vtkCollection

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

 

Methods:

static vtkActorCollection *New ()
const char *GetClassName ()
void AddItem (vtkActor *)
void RemoveItem (vtkActor *)
int IsItemPresent (vtkActor *)
vtkActor *GetNextItem ()
vtkActor *GetLastItem ()

 

Detailed Method Descriptions:

Add an actor to the list.

void AddItem (vtkActor *)

Remove an actor from the list.

void RemoveItem (vtkActor *)

Determine whether a particular actor is present. Returns its position in the list.

int IsItemPresent (vtkActor *)

Get the next actor in the list.

vtkActor *GetNextItem ()

Get the last actor in the list.

vtkActor *GetLastItem ()