Section: Visualization Toolkit Parallel Classes
To create an instance of class vtkCollectPolyData, simply invoke its constructor as follows
obj = vtkCollectPolyData
obj is an instance of the vtkCollectPolyData class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkCollectPolyData = obj.NewInstance ()
vtkCollectPolyData = obj.SafeDownCast (vtkObject o)
obj.SetController (vtkMultiProcessController ) - By defualt this filter uses the global controller,
but this method can be used to set another instead.
vtkMultiProcessController = obj.GetController () - By defualt this filter uses the global controller,
but this method can be used to set another instead.
obj.SetSocketController (vtkSocketController ) - When this filter is being used in client-server mode,
this is the controller used to communicate between
client and server. Client should not set the other controller.
vtkSocketController = obj.GetSocketController () - When this filter is being used in client-server mode,
this is the controller used to communicate between
client and server. Client should not set the other controller.
obj.SetPassThrough (int ) - To collect or just copy input to output. Off (collect) by default.
int = obj.GetPassThrough () - To collect or just copy input to output. Off (collect) by default.
obj.PassThroughOn () - To collect or just copy input to output. Off (collect) by default.
obj.PassThroughOff () - To collect or just copy input to output. Off (collect) by default.