#include <vtkSimpleScalarTree.h>
Inheritance diagram for vtkSimpleScalarTree:
vtkSimpleScalarTree creates a pointerless binary tree that helps search for cells that lie within a particular scalar range. This object is used to accelerate some contouring (and other scalar-based techniques).
The tree consists of an array of (min,max) scalar range pairs per node in the tree. The (min,max) range is determined from looking at the range of the children of the tree node. If the node is a leaf, then the range is determined by scanning the range of scalar data in n cells in the dataset. The n cells are determined by arbitrary selecting cell ids from id(i) to id(i+n), and where n is specified using the BranchingFactor ivar. Note that leaf node i=0 contains the scalar range computed from cell ids (0,n-1); leaf node i=1 contains the range from cell ids (n,2n-1); and so on. The implication is that there are no direct lists of cell ids per leaf node, instead the cell ids are implicitly known.
Definition at line 54 of file vtkSimpleScalarTree.h.
[NOHEADER] | |
typedef vtkScalarTree | Superclass |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
int | IsTypeOf (const char *type) |
vtkSimpleScalarTree * | SafeDownCast (vtkObject *o) |
Public Member Functions | |
virtual void | BuildTree () |
virtual void | Initialize () |
virtual void | InitTraversal (double scalarValue) |
virtual void | SetBranchingFactor (int) |
virtual int | GetBranchingFactor () |
virtual int | GetLevel () |
virtual void | SetMaxLevel (int) |
virtual int | GetMaxLevel () |
virtual vtkCell * | GetNextCell (vtkIdType &cellId, vtkIdList *&ptIds, vtkDataArray *cellScalars) |
Static Public Member Functions | |
vtkSimpleScalarTree * | New () |
Protected Member Functions | |
vtkSimpleScalarTree () | |
~vtkSimpleScalarTree () | |
Protected Attributes | |
vtkDataArray * | Scalars |
int | MaxLevel |
int | Level |
int | BranchingFactor |
vtkScalarNode * | Tree |
int | TreeSize |
|
Standard type related macros and PrintSelf() method. Reimplemented from vtkScalarTree. Definition at line 63 of file vtkSimpleScalarTree.h. |
|
|
|
|
|
Instantiate scalar tree with maximum level of 20 and branching factor of 5. Reimplemented from vtkObject. |
|
Standard type related macros and PrintSelf() method. Reimplemented from vtkScalarTree. |
|
Standard type related macros and PrintSelf() method. Reimplemented from vtkScalarTree. |
|
Standard type related macros and PrintSelf() method. Reimplemented from vtkScalarTree. |
|
Standard type related macros and PrintSelf() method. Reimplemented from vtkScalarTree. |
|
Standard type related macros and PrintSelf() method. Reimplemented from vtkScalarTree. |
|
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. |
|
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. |
|
Get the level of the scalar tree. This value may change each time the scalar tree is built and the branching factor changes. |
|
Set the maximum allowable level for the tree. |
|
Set the maximum allowable level for the tree. |
|
Construct the scalar tree from the dataset provided. Checks build times and modified time from input and reconstructs the tree if necessary. Implements vtkScalarTree. |
|
Initialize locator. Frees memory and resets object as appropriate. Implements vtkScalarTree. |
|
Begin to traverse the cells based on a scalar value. Returned cells will have scalar values that span the scalar value specified. Implements vtkScalarTree. |
|
Return the next cell that may contain scalar value specified to initialize traversal. The value NULL is returned if the list is exhausted. Make sure that InitTraversal() has been invoked first or you'll get erratic behavior. Implements vtkScalarTree. |
|
Reimplemented from vtkScalarTree. Definition at line 113 of file vtkSimpleScalarTree.h. |
|
Definition at line 114 of file vtkSimpleScalarTree.h. |
|
Definition at line 115 of file vtkSimpleScalarTree.h. |
|
Definition at line 116 of file vtkSimpleScalarTree.h. |
|
Definition at line 117 of file vtkSimpleScalarTree.h. |
|
Definition at line 118 of file vtkSimpleScalarTree.h. |