Documentation for vtkTransformCollection

vtkTransformCollection - maintain a list of transforms

Super Class: vtkCollection

Description:

vtkTransformCollection is an object that creates and manipulates lists of objects of type vtkTransform.

 

See Also:

vtkCollection vtkTransform

 

Methods:

const char *GetClassName ()
static vtkTransformCollection *New ()
void AddItem (vtkTransform *)
void RemoveItem (vtkTransform *)
int IsItemPresent (vtkTransform *)
vtkTransform *GetNextItem ()

 

Detailed Method Descriptions:

Add a Transform to the list.

void AddItem (vtkTransform *)

Remove a Transform from the list.

void RemoveItem (vtkTransform *)

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

int IsItemPresent (vtkTransform *)

Get the next Transform in the list. Return NULL when the end of the list is reached.

vtkTransform *GetNextItem ()