Section: Visualization Toolkit Graphics Classes
To create an instance of class vtkAppendPolyData, simply invoke its constructor as follows
obj = vtkAppendPolyData
obj
is an instance of the vtkAppendPolyData class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkAppendPolyData = obj.NewInstance ()
vtkAppendPolyData = obj.SafeDownCast (vtkObject o)
obj.SetUserManagedInputs (int )
- UserManagedInputs allows the user to set inputs by number instead of
using the AddInput/RemoveInput functions. Calls to
SetNumberOfInputs/SetInputByNumber should not be mixed with calls
to AddInput/RemoveInput. By default, UserManagedInputs is false.
int = obj.GetUserManagedInputs ()
- UserManagedInputs allows the user to set inputs by number instead of
using the AddInput/RemoveInput functions. Calls to
SetNumberOfInputs/SetInputByNumber should not be mixed with calls
to AddInput/RemoveInput. By default, UserManagedInputs is false.
obj.UserManagedInputsOn ()
- UserManagedInputs allows the user to set inputs by number instead of
using the AddInput/RemoveInput functions. Calls to
SetNumberOfInputs/SetInputByNumber should not be mixed with calls
to AddInput/RemoveInput. By default, UserManagedInputs is false.
obj.UserManagedInputsOff ()
- UserManagedInputs allows the user to set inputs by number instead of
using the AddInput/RemoveInput functions. Calls to
SetNumberOfInputs/SetInputByNumber should not be mixed with calls
to AddInput/RemoveInput. By default, UserManagedInputs is false.
obj.AddInput (vtkPolyData )
- Add a dataset to the list of data to append. Should not be
used when UserManagedInputs is true, use SetInputByNumber instead.
obj.RemoveInput (vtkPolyData )
- Remove a dataset from the list of data to append. Should not be
used when UserManagedInputs is true, use SetInputByNumber (NULL) instead.
obj.SetNumberOfInputs (int num)
- Directly set(allocate) number of inputs, should only be used
when UserManagedInputs is true.
obj.SetInputByNumber (int num, vtkPolyData input)
obj.SetParallelStreaming (int )
- ParallelStreaming is for a particular application.
It causes this filter to ask for a different piece
from each of its inputs. If all the inputs are the same,
then the output of this append filter is the whole dataset
pieced back together. Duplicate points are create
along the seams. The purpose of this feature is to get
data parallelism at a course scale. Each of the inputs
can be generated in a different process at the same time.
int = obj.GetParallelStreaming ()
- ParallelStreaming is for a particular application.
It causes this filter to ask for a different piece
from each of its inputs. If all the inputs are the same,
then the output of this append filter is the whole dataset
pieced back together. Duplicate points are create
along the seams. The purpose of this feature is to get
data parallelism at a course scale. Each of the inputs
can be generated in a different process at the same time.
obj.ParallelStreamingOn ()
- ParallelStreaming is for a particular application.
It causes this filter to ask for a different piece
from each of its inputs. If all the inputs are the same,
then the output of this append filter is the whole dataset
pieced back together. Duplicate points are create
along the seams. The purpose of this feature is to get
data parallelism at a course scale. Each of the inputs
can be generated in a different process at the same time.
obj.ParallelStreamingOff ()
- ParallelStreaming is for a particular application.
It causes this filter to ask for a different piece
from each of its inputs. If all the inputs are the same,
then the output of this append filter is the whole dataset
pieced back together. Duplicate points are create
along the seams. The purpose of this feature is to get
data parallelism at a course scale. Each of the inputs
can be generated in a different process at the same time.