Section: Visualization Toolkit Filtering Classes
To create an instance of class vtkSimpleScalarTree, simply invoke its constructor as follows
obj = vtkSimpleScalarTree
obj
is an instance of the vtkSimpleScalarTree class.
string = obj.GetClassName ()
- Standard type related macros and PrintSelf() method.
int = obj.IsA (string name)
- Standard type related macros and PrintSelf() method.
vtkSimpleScalarTree = obj.NewInstance ()
- Standard type related macros and PrintSelf() method.
vtkSimpleScalarTree = obj.SafeDownCast (vtkObject o)
- Standard type related macros and PrintSelf() method.
obj.SetBranchingFactor (int )
- Set the branching factor for the tree. This is the number of
children per tree node. Smaller values (minimum is 2) mean deeper
trees and more memory overhead. Larger values mean shallower
trees, less memory usage, but worse performance.
int = obj.GetBranchingFactorMinValue ()
- Set the branching factor for the tree. This is the number of
children per tree node. Smaller values (minimum is 2) mean deeper
trees and more memory overhead. Larger values mean shallower
trees, less memory usage, but worse performance.
int = obj.GetBranchingFactorMaxValue ()
- Set the branching factor for the tree. This is the number of
children per tree node. Smaller values (minimum is 2) mean deeper
trees and more memory overhead. Larger values mean shallower
trees, less memory usage, but worse performance.
int = obj.GetBranchingFactor ()
- Set the branching factor for the tree. This is the number of
children per tree node. Smaller values (minimum is 2) mean deeper
trees and more memory overhead. Larger values mean shallower
trees, less memory usage, but worse performance.
int = obj.GetLevel ()
- Get the level of the scalar tree. This value may change each time the
scalar tree is built and the branching factor changes.
obj.SetMaxLevel (int )
- Set the maximum allowable level for the tree.
int = obj.GetMaxLevelMinValue ()
- Set the maximum allowable level for the tree.
int = obj.GetMaxLevelMaxValue ()
- Set the maximum allowable level for the tree.
int = obj.GetMaxLevel ()
- Set the maximum allowable level for the tree.
obj.BuildTree ()
- Construct the scalar tree from the dataset provided. Checks build times
and modified time from input and reconstructs the tree if necessary.
obj.Initialize ()
- Initialize locator. Frees memory and resets object as appropriate.
obj.InitTraversal (double scalarValue)
- Begin to traverse the cells based on a scalar value. Returned cells
will have scalar values that span the scalar value specified.