1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
Usage
vtkAppendSelection is a filter that appends one of more
selections into a single selection. All selections must have
the same content type unless AppendByUnion is false.
To create an instance of class vtkAppendSelection, simply
invoke its constructor as follows
obj = vtkAppendSelection
Methods
The class vtkAppendSelection has several methods that can be
used. They are listed below. Note that the documentation is
translated automatically from the VTK sources, and may not
be completely intelligible. When in doubt, consult the VTK
website. In the methods listed below, obj is an instance of
the vtkAppendSelection class.
* string = obj.GetClassName ()
* int = obj.IsA (string name)
* vtkAppendSelection = obj.NewInstance ()
* vtkAppendSelection = 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 (vtkSelection ) - Add a dataset to the list
of data to append. Should not be used when
UserManagedInputs is true, use SetInputByNumber instead.
* obj.RemoveInput (vtkSelection ) - 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, vtkSelection input)
* obj.SetAppendByUnion (int ) - When set to true, all the
selections are combined together to form a single
vtkSelection output. When set to false, the output is a
composite selection with input selections as the children
of the composite selection. This allows for selections
with different content types and properties. Default is
true.
* int = obj.GetAppendByUnion () - When set to true, all the
selections are combined together to form a single
vtkSelection output. When set to false, the output is a
composite selection with input selections as the children
of the composite selection. This allows for selections
with different content types and properties. Default is
true.
* obj.AppendByUnionOn () - When set to true, all the
selections are combined together to form a single
vtkSelection output. When set to false, the output is a
composite selection with input selections as the children
of the composite selection. This allows for selections
with different content types and properties. Default is
true.
* obj.AppendByUnionOff () - When set to true, all the
selections are combined together to form a single
vtkSelection output. When set to false, the output is a
composite selection with input selections as the children
of the composite selection. This allows for selections
with different content types and properties. Default is
true.
* FreeMat_Documentation
* Visualization_Toolkit_Graphics_Classes
* Generated on Thu Jul 25 2013 17:18:31 for FreeMat by
doxygen_ 1.8.1.1
|