Documentation for vtkMapperCollection

vtkMapperCollection - a list of mappers

Super Class: vtkCollection

Description:

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

 

See Also:

vtkMapper vtkCollection

 

Methods:

static vtkMapperCollection *New ()
const char *GetClassName ()
void AddItem (vtkMapper *)
void RemoveItem (vtkMapper *)
int IsItemPresent (vtkMapper *)
vtkMapper *GetNextItem ()
vtkMapper *GetLastItem ()

 

Detailed Method Descriptions:

Add an mapper to the list.

void AddItem (vtkMapper *)

Remove an mapper from the list.

void RemoveItem (vtkMapper *)

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

int IsItemPresent (vtkMapper *)

Get the next mapper in the list.

vtkMapper *GetNextItem ()

Get the last mapper in the list.

vtkMapper *GetLastItem ()