Man Page for vtkTransformCollection
Table of Contents

NAME

vtkTransformCollection - maintain a list of transforms

SYNOPSIS


#include "/opt/vtk-c++/common/vtkTransformCollection.h"

class VTK_EXPORT vtkTransformCollection : public vtkCollection

const char *GetClassName() {return "vtkTransformCollection";};
static vtkTransformCollection *New() {return new vtkTransformCollection;};
void AddItem(vtkTransform *);
void RemoveItem(vtkTransform *);
int IsItemPresent(vtkTransform *);
vtkTransform *GetNextItem();

DESCRIPTION

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

SEE ALSO

vtkCollection vtkTransform

SUMMARY

void AddItem(vtkTransform *t)
Add a Transform to the list.

void RemoveItem(vtkTransform *t)
Remove a Transform from the list.

int IsItemPresent(vtkTransform *t)
Determine whether a particular Transform is present. Returns its position in the list.

vtkTransform *GetNextItem()
Get the next Transform in the list. Return NULL when the end of the list is reached.


Table of Contents