VTK
|
abstract base class for objects that accelerate spatial searches More...
#include <vtkLocator.h>
Public Member Functions | |
virtual void | Update () |
Cause the locator to rebuild itself if it or its input dataset has changed. More... | |
virtual void | Initialize () |
Initialize locator. More... | |
virtual void | BuildLocator ()=0 |
Build the locator from the input dataset. More... | |
virtual void | FreeSearchStructure ()=0 |
Free the memory required for the spatial data structure. More... | |
virtual void | GenerateRepresentation (int level, vtkPolyData *pd)=0 |
Method to build a representation at a particular level. More... | |
virtual void | SetDataSet (vtkDataSet *) |
Build the locator from the points/cells defining this dataset. More... | |
virtual vtkDataSet * | GetDataSet () |
Build the locator from the points/cells defining this dataset. More... | |
virtual void | SetMaxLevel (int) |
Set the maximum allowable level for the tree. More... | |
virtual int | GetMaxLevel () |
Set the maximum allowable level for the tree. More... | |
virtual int | GetLevel () |
Get the level of the locator (determined automatically if Automatic is true). More... | |
virtual void | SetAutomatic (vtkTypeBool) |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket. More... | |
virtual vtkTypeBool | GetAutomatic () |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket. More... | |
virtual void | AutomaticOn () |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket. More... | |
virtual void | AutomaticOff () |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket. More... | |
virtual void | SetTolerance (double) |
Specify absolute tolerance (in world coordinates) for performing geometric operations. More... | |
virtual double | GetTolerance () |
Specify absolute tolerance (in world coordinates) for performing geometric operations. More... | |
virtual vtkMTimeType | GetBuildTime () |
Return the time of the last data structure build. More... | |
void | Register (vtkObjectBase *o) override |
Handle the PointSet <-> Locator loop. More... | |
void | UnRegister (vtkObjectBase *o) override |
Handle the PointSet <-> Locator loop. More... | |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. More... | |
virtual void | DebugOff () |
Turn debugging output off. More... | |
bool | GetDebug () |
Get the value of the debug flag. More... | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. More... | |
virtual void | Modified () |
Update the modification time for this object. More... | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. More... | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. More... | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. More... | |
virtual void | Delete () |
Delete a VTK object. More... | |
virtual void | FastDelete () |
Delete a reference to this object. More... | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. More... | |
int | GetReferenceCount () |
Return the current reference count of this object. More... | |
void | SetReferenceCount (int) |
Sets the reference count. More... | |
void | PrintRevisions (ostream &) |
Legacy. More... | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
Protected Member Functions | |
vtkLocator () | |
~vtkLocator () override | |
void | ReportReferences (vtkGarbageCollector *) override |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. More... | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. More... | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | CollectRevisions (ostream &) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Protected Attributes | |
vtkDataSet * | DataSet |
vtkTypeBool | Automatic |
double | Tolerance |
int | MaxLevel |
int | Level |
vtkTimeStamp | BuildTime |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
Protected Attributes inherited from vtkObjectBase | |
vtkAtomicInt32 | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
typedef vtkObject | Superclass |
Standard type and print methods. More... | |
static vtkTypeBool | IsTypeOf (const char *type) |
Standard type and print methods. More... | |
static vtkLocator * | SafeDownCast (vtkObjectBase *o) |
Standard type and print methods. More... | |
virtual vtkTypeBool | IsA (const char *type) |
Standard type and print methods. More... | |
vtkLocator * | NewInstance () const |
Standard type and print methods. More... | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Standard type and print methods. More... | |
virtual vtkObjectBase * | NewInstanceInternal () const |
Standard type and print methods. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. More... | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. More... | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
abstract base class for objects that accelerate spatial searches
vtkLocator is an abstract base class for spatial search objects, or locators. The principle behind locators is that they divide 3-space into small regions (or "buckets") that can be quickly found in response to queries about point location, line intersection, or object-object intersection.
The purpose of this base class is to provide data members and methods shared by all locators. The GenerateRepresentation() is one such interesting method. This method works in conjunction with vtkLocatorFilter to create polygonal representations for the locator. For example, if the locator is an OBB tree (i.e., vtkOBBTree.h), then the representation is a set of one or more oriented bounding boxes, depending upon the specified level.
Locators typically work as follows. One or more "entities", such as points or cells, are inserted into the locator structure. These entities are associated with one or more buckets. Then, when performing geometric operations, the operations are performed first on the buckets, and then if the operation tests positive, then on the entities in the bucket. For example, during collision tests, the locators are collided first to identify intersecting buckets. If an intersection is found, more expensive operations are then carried out on the entities in the bucket.
To obtain good performance, locators are often organized in a tree structure. In such a structure, there are frequently multiple "levels" corresponding to different nodes in the tree. So the word level (in the context of the locator) can be used to specify a particular representation in the tree. For example, in an octree (which is a tree with 8 children), level 0 is the bounding box, or root octant, and level 1 consists of its eight children.
Definition at line 69 of file vtkLocator.h.
typedef vtkObject vtkLocator::Superclass |
Standard type and print methods.
Definition at line 76 of file vtkLocator.h.
|
protected |
|
overrideprotected |
|
static |
Standard type and print methods.
|
virtual |
Standard type and print methods.
Reimplemented from vtkObjectBase.
Reimplemented in vtkModifiedBSPTree, vtkOBBTree, vtkStaticPointLocator2D, vtkKdTree, vtkStaticPointLocator, vtkIncrementalOctreePointLocator, vtkPointLocator, vtkStaticCellLocator, vtkPKdTree, vtkCellTreeLocator, vtkCellLocator, vtkIncrementalPointLocator, vtkOctreePointLocator, vtkAbstractCellLocator, vtkAbstractPointLocator, vtkNonMergingPointLocator, vtkSMPMergePoints, vtkKdTreePointLocator, and vtkMergePoints.
|
static |
Standard type and print methods.
|
protectedvirtual |
Standard type and print methods.
Reimplemented in vtkModifiedBSPTree, vtkOBBTree, vtkStaticPointLocator2D, vtkKdTree, vtkStaticPointLocator, vtkIncrementalOctreePointLocator, vtkPointLocator, vtkStaticCellLocator, vtkPKdTree, vtkCellTreeLocator, vtkCellLocator, vtkIncrementalPointLocator, vtkOctreePointLocator, vtkAbstractCellLocator, vtkAbstractPointLocator, vtkNonMergingPointLocator, vtkSMPMergePoints, vtkKdTreePointLocator, and vtkMergePoints.
vtkLocator* vtkLocator::NewInstance | ( | ) | const |
Standard type and print methods.
|
overridevirtual |
Standard type and print methods.
Reimplemented from vtkObject.
Reimplemented in vtkModifiedBSPTree, vtkOBBTree, vtkStaticPointLocator2D, vtkStaticPointLocator, vtkPointLocator, vtkStaticCellLocator, vtkPKdTree, vtkCellTreeLocator, vtkOctreePointLocator, vtkNonMergingPointLocator, vtkSMPMergePoints, and vtkMergePoints.
|
virtual |
Build the locator from the points/cells defining this dataset.
Reimplemented in vtkKdTree.
|
virtual |
Build the locator from the points/cells defining this dataset.
Reimplemented in vtkKdTree.
|
virtual |
Set the maximum allowable level for the tree.
If the Automatic ivar is off, this will be the target depth of the locator. Initial value is 8.
|
virtual |
Set the maximum allowable level for the tree.
If the Automatic ivar is off, this will be the target depth of the locator. Initial value is 8.
|
virtual |
Get the level of the locator (determined automatically if Automatic is true).
The value of this ivar may change each time the locator is built. Initial value is 8.
|
virtual |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
If not set, there will be an explicit method to control the construction of the locator (found in the subclass).
|
virtual |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
If not set, there will be an explicit method to control the construction of the locator (found in the subclass).
|
virtual |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
If not set, there will be an explicit method to control the construction of the locator (found in the subclass).
|
virtual |
Boolean controls whether locator depth/resolution of locator is computed automatically from average number of entities in bucket.
If not set, there will be an explicit method to control the construction of the locator (found in the subclass).
|
virtual |
Specify absolute tolerance (in world coordinates) for performing geometric operations.
|
virtual |
Specify absolute tolerance (in world coordinates) for performing geometric operations.
|
virtual |
Cause the locator to rebuild itself if it or its input dataset has changed.
|
virtual |
Initialize locator.
Frees memory and resets object as appropriate.
Reimplemented in vtkPointLocator, vtkStaticPointLocator2D, vtkStaticPointLocator, and vtkIncrementalOctreePointLocator.
|
pure virtual |
Build the locator from the input dataset.
Implemented in vtkKdTree, vtkPointLocator, vtkStaticPointLocator2D, vtkModifiedBSPTree, vtkOBBTree, vtkStaticPointLocator, vtkCellLocator, vtkIncrementalOctreePointLocator, vtkStaticCellLocator, vtkCellTreeLocator, vtkOctreePointLocator, vtkKdTreePointLocator, and vtkPKdTree.
|
pure virtual |
Free the memory required for the spatial data structure.
Implemented in vtkKdTree, vtkPointLocator, vtkStaticPointLocator2D, vtkOBBTree, vtkModifiedBSPTree, vtkOctreePointLocator, vtkStaticPointLocator, vtkCellLocator, vtkStaticCellLocator, vtkCellTreeLocator, vtkIncrementalOctreePointLocator, and vtkKdTreePointLocator.
|
pure virtual |
Method to build a representation at a particular level.
Note that the method GetLevel() returns the maximum number of levels available for the tree. You must provide a vtkPolyData object into which to place the data.
Implemented in vtkKdTree, vtkStaticPointLocator2D, vtkPointLocator, vtkOBBTree, vtkModifiedBSPTree, vtkStaticPointLocator, vtkOctreePointLocator, vtkCellLocator, vtkStaticCellLocator, vtkIncrementalOctreePointLocator, vtkCellTreeLocator, and vtkKdTreePointLocator.
|
virtual |
Return the time of the last data structure build.
|
overridevirtual |
Handle the PointSet <-> Locator loop.
Reimplemented from vtkObjectBase.
|
overridevirtual |
Handle the PointSet <-> Locator loop.
Reimplemented from vtkObjectBase.
|
overrideprotectedvirtual |
Reimplemented from vtkObjectBase.
|
protected |
Definition at line 176 of file vtkLocator.h.
|
protected |
Definition at line 177 of file vtkLocator.h.
|
protected |
Definition at line 178 of file vtkLocator.h.
|
protected |
Definition at line 179 of file vtkLocator.h.
|
protected |
Definition at line 180 of file vtkLocator.h.
|
protected |
Definition at line 182 of file vtkLocator.h.