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
|
Usage
To create an instance of class vtkSelectionNode, simply
invoke its constructor as follows
obj = vtkSelectionNode
Methods
The class vtkSelectionNode 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 vtkSelectionNode class.
* string = obj.GetClassName ()
* int = obj.IsA (string name)
* vtkSelectionNode = obj.NewInstance ()
* vtkSelectionNode = obj.SafeDownCast (vtkObject o)
* obj.Initialize () - Restore data object to initial state,
* obj.SetSelectionList (vtkAbstractArray ) - Sets the
selection list.
* vtkAbstractArray = obj.GetSelectionList () - Sets the
selection list.
* obj.SetSelectionData (vtkDataSetAttributes data) - Sets
the selection table.
* vtkDataSetAttributes = obj.GetSelectionData () - Sets the
selection table.
* vtkInformation = obj.GetProperties () - Returns the
property map.
* obj.DeepCopy (vtkSelectionNode src) - Copy properties,
selection list and children of the input.
* obj.ShallowCopy (vtkSelectionNode src) - Copy properties,
selection list and children of the input. This is a
shallow copy: selection lists and pointers in the
properties are passed by reference.
* long = obj.GetMTime () - Return the MTime taking into
account changes to the properties
* obj.SetContentType (int type) - Get or set the content
type of the selection. This is the same as setting the
CONTENT_TYPE() key on the property.
* int = obj.GetContentType () - Get or set the content type
of the selection. This is the same as setting the
CONTENT_TYPE() key on the property.
* obj.SetFieldType (int type) - Get or set the field type of
the selection. This is the same as setting the FIELD_TYPE
() key on the property.
* int = obj.GetFieldType () - Get or set the field type of
the selection. This is the same as setting the FIELD_TYPE
() key on the property.
* obj.SetSelectedProp (vtkProp prop) - Get or set the prop
of the selection. This is the same as setting the PROP()
key on the property.
* vtkProp = obj.GetSelectedProp () - Get or set the prop of
the selection. This is the same as setting the PROP() key
on the property.
* obj.UnionSelectionList (vtkSelectionNode other) - Merges
the selection list between self and the other. Assumes
that both has identical properties.
* bool = obj.EqualProperties (vtkSelectionNode other, bool
fullcomparetrue) - Compares Properties of self and other
to ensure that they are exactly same.
* FreeMat_Documentation
* Visualization_Toolkit_Filtering_Classes
* Generated on Thu Jul 25 2013 17:18:31 for FreeMat by
doxygen_ 1.8.1.1
|