NAME
vtkImplicitFunctionCollection - maintain a list of implicit functions
SYNOPSIS
#include "/opt/vtk-c++/common/vtkImplicitFunctionCollection.h"
class VTK_EXPORT vtkImplicitFunctionCollection : public vtkCollection
const char *GetClassName() {return "vtkImplicitFunctionCollection";};
static vtkImplicitFunctionCollection *New()
{return new vtkImplicitFunctionCollection;};
void AddItem(vtkImplicitFunction *);
void RemoveItem(vtkImplicitFunction *);
int IsItemPresent(vtkImplicitFunction *);
vtkImplicitFunction *GetNextItem();
DESCRIPTION
vtkImplicitFunctionCollection is an object that creates and manipulates lists of objects of type vtkImplicitFunction.
SUMMARY
void AddItem(vtkImplicitFunction *f)
Add an implicit function to the list.
void RemoveItem(vtkImplicitFunction *f)
Remove an implicit function from the list.
int IsItemPresent(vtkImplicitFunction *f)
Determine whether a particular implicit function is present. Returns its position in the list.
vtkImplicitFunction *GetNextItem()
Get the next implicit function in the list.