vtkAbstractCellLocator

Section: Visualization Toolkit Filtering Classes

Usage

vtkAbstractCellLocator is a spatial search object to quickly locate cells in 3D. vtkAbstractCellLocator supplies a basic interface which concrete subclasses should implement.

.SECTION Warning When deriving a class from vtkAbstractCellLocator, one should include the 'hidden' member functions by the following construct in the derived class \verbatim //BTX using vtkAbstractCellLocator::IntersectWithLine; using vtkAbstractCellLocator::FindClosestPoint; using vtkAbstractCellLocator::FindClosestPointWithinRadius; //ETX \endverbatim

To create an instance of class vtkAbstractCellLocator, simply invoke its constructor as follows

  obj = vtkAbstractCellLocator

Methods

The class vtkAbstractCellLocator 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 vtkAbstractCellLocator class.