|
void | SetNumberOfCellsPerBucket (int N) |
| Specify the average number of cells in each octant. More...
|
|
int | GetNumberOfCellsPerBucket () |
|
int | IntersectWithLine (const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId, vtkIdType &cellId, vtkGenericCell *cell) override |
| Return intersection point (if any) AND the cell which was intersected by the finite line. More...
|
|
int | IntersectWithLine (const double p1[3], const double p2[3], double tol, vtkPoints *points, vtkIdList *cellIds, vtkGenericCell *cell) override |
| Take the passed line segment and intersect it with the data set. More...
|
|
void | FindClosestPoint (const double x[3], double closestPoint[3], vtkGenericCell *cell, vtkIdType &cellId, int &subId, double &dist2) override |
| Return the closest point and the cell which is closest to the point x. More...
|
|
vtkIdType | FindClosestPointWithinRadius (double x[3], double radius, double closestPoint[3], vtkGenericCell *cell, vtkIdType &cellId, int &subId, double &dist2, int &inside) override |
| Return the closest point within a specified radius and the cell which is closest to the point x. More...
|
|
vtkIdType | FindCell (double x[3], double vtkNotUsed(tol2), vtkGenericCell *GenCell, int &subId, double pcoords[3], double *weights) override |
| Find the cell containing a given point. More...
|
|
void | FindCellsWithinBounds (double *bbox, vtkIdList *cells) override |
| Return a list of unique cell ids inside of a given bounding box. More...
|
|
void | FindCellsAlongLine (const double p1[3], const double p2[3], double tolerance, vtkIdList *cellsIds) override |
| Take the passed line segment and intersect it with the data set. More...
|
|
virtual void | BuildLocatorIfNeeded () |
|
virtual vtkIdList * | GetCells (int bucket) |
| Get the cells in a particular bucket. More...
|
|
virtual int | GetNumberOfBuckets () |
| Return number of buckets available. More...
|
|
void | ShallowCopy (vtkAbstractCellLocator *locator) override |
| Shallow copy of a vtkCellLocator. More...
|
|
|
void | FreeSearchStructure () override |
| Satisfy vtkLocator abstract interface. More...
|
|
void | BuildLocator () override |
| Satisfy vtkLocator abstract interface. More...
|
|
void | ForceBuildLocator () override |
| Satisfy vtkLocator abstract interface. More...
|
|
void | GenerateRepresentation (int level, vtkPolyData *pd) override |
| Satisfy vtkLocator abstract interface. More...
|
|
vtkAbstractCellLocator * | NewInstance () const |
|
void | ComputeCellBounds () |
| This function can be used either internally or externally to compute only the cached cell bounds if CacheCellBounds is on. More...
|
|
virtual int | IntersectWithLine (const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) |
| Return intersection point (if any) of finite line with cells contained in cell locator. More...
|
|
virtual int | IntersectWithLine (const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId, vtkIdType &cellId) |
| Return intersection point (if any) AND the cell which was intersected by the finite line. More...
|
|
virtual int | IntersectWithLine (const double p1[3], const double p2[3], vtkPoints *points, vtkIdList *cellIds) |
| Take the passed line segment and intersect it with the data set. More...
|
|
virtual int | IntersectWithLine (const double p1[3], const double p2[3], double tol, vtkPoints *points, vtkIdList *cellIds) |
| Take the passed line segment and intersect it with the data set. More...
|
|
virtual void | FindClosestPoint (const double x[3], double closestPoint[3], vtkIdType &cellId, int &subId, double &dist2) |
| Return the closest point and the cell which is closest to the point x. More...
|
|
virtual vtkIdType | FindClosestPointWithinRadius (double x[3], double radius, double closestPoint[3], vtkIdType &cellId, int &subId, double &dist2) |
| Return the closest point within a specified radius and the cell which is closest to the point x. More...
|
|
virtual vtkIdType | FindClosestPointWithinRadius (double x[3], double radius, double closestPoint[3], vtkGenericCell *cell, vtkIdType &cellId, int &subId, double &dist2) |
| Return the closest point within a specified radius and the cell which is closest to the point x. More...
|
|
virtual void | FindCellsAlongPlane (const double o[3], const double n[3], double tolerance, vtkIdList *cells) |
| Given an unbounded plane defined by an origin o[3] and unit normal n[3], return the list of unique cell ids in the buckets containing the plane. More...
|
|
virtual vtkIdType | FindCell (double x[3]) |
| Returns the Id of the cell containing the point, returns -1 if no cell found. More...
|
|
virtual bool | InsideCellBounds (double x[3], vtkIdType cell_ID) |
| Quickly test if a point is inside the bounds of a particular cell. More...
|
|
virtual void | SetNumberOfCellsPerNode (int) |
| Specify the preferred/maximum number of cells in each node/bucket. More...
|
|
virtual int | GetNumberOfCellsPerNode () |
| Specify the preferred/maximum number of cells in each node/bucket. More...
|
|
virtual void | SetCacheCellBounds (vtkTypeBool) |
| Boolean controls whether the bounds of each cell are computed only once and then saved. More...
|
|
virtual vtkTypeBool | GetCacheCellBounds () |
| Boolean controls whether the bounds of each cell are computed only once and then saved. More...
|
|
virtual void | CacheCellBoundsOn () |
| Boolean controls whether the bounds of each cell are computed only once and then saved. More...
|
|
virtual void | CacheCellBoundsOff () |
| Boolean controls whether the bounds of each cell are computed only once and then saved. More...
|
|
virtual void | SetRetainCellLists (vtkTypeBool) |
| Boolean controls whether to maintain list of cells in each node. More...
|
|
virtual vtkTypeBool | GetRetainCellLists () |
| Boolean controls whether to maintain list of cells in each node. More...
|
|
virtual void | RetainCellListsOn () |
| Boolean controls whether to maintain list of cells in each node. More...
|
|
virtual void | RetainCellListsOff () |
| Boolean controls whether to maintain list of cells in each node. More...
|
|
virtual void | SetLazyEvaluation (vtkTypeBool) |
| Most Locators build their search structures during BuildLocator but some may delay construction until it is actually needed. More...
|
|
virtual vtkTypeBool | GetLazyEvaluation () |
| Most Locators build their search structures during BuildLocator but some may delay construction until it is actually needed. More...
|
|
virtual void | LazyEvaluationOn () |
| Most Locators build their search structures during BuildLocator but some may delay construction until it is actually needed. More...
|
|
virtual void | LazyEvaluationOff () |
| Most Locators build their search structures during BuildLocator but some may delay construction until it is actually needed. More...
|
|
virtual vtkIdType | FindCell (double x[3], double tol2, vtkGenericCell *GenCell, double pcoords[3], double *weights) |
| Find the cell containing a given point. More...
|
|
virtual vtkIdType | FindCell (double x[3], double tol2, vtkGenericCell *GenCell, int &subId, double pcoords[3], double *weights) |
| Find the cell containing a given point. More...
|
|
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 | 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 void | SetUseExistingSearchStructure (vtkTypeBool) |
| Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again. More...
|
|
virtual vtkTypeBool | GetUseExistingSearchStructure () |
| Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again. More...
|
|
virtual void | UseExistingSearchStructureOn () |
| Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again. More...
|
|
virtual void | UseExistingSearchStructureOff () |
| Get/Set UseExistingSearchStructure, which when enabled it allows the locator to NOT be built again. More...
|
|
virtual vtkMTimeType | GetBuildTime () |
| Return the time of the last data structure build. More...
|
|
bool | UsesGarbageCollector () const override |
| Handle the PointSet <-> Locator loop. More...
|
|
vtkLocator * | NewInstance () const |
| Standard type and print methods. More...
|
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Standard type and print methods. More...
|
|
| 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) |
|
vtkTypeBool | InvokeEvent (unsigned long event) |
|
vtkTypeBool | InvokeEvent (const char *event) |
|
std::string | GetObjectDescription () const override |
| The object description printed in messages and PrintSelf output. More...
|
|
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...
|
|
vtkTypeBool | InvokeEvent (unsigned long event, void *callData) |
| This method invokes an event and return whether the event was aborted or not. More...
|
|
vtkTypeBool | InvokeEvent (const char *event, void *callData) |
| This method invokes an event and return whether the event was aborted or not. More...
|
|
virtual void | SetObjectName (const std::string &objectName) |
| Set/get the name of this object for reporting purposes. More...
|
|
virtual std::string | GetObjectName () const |
| Set/get the name of this object for reporting purposes. More...
|
|
const char * | GetClassName () const |
| Return the class name as a string. More...
|
|
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
| Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). 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...
|
|
virtual void | Register (vtkObjectBase *o) |
| Increase the reference count (mark as used by another object). More...
|
|
virtual void | UnRegister (vtkObjectBase *o) |
| Decrease the reference count (release by another object). More...
|
|
int | GetReferenceCount () |
| Return the current reference count of this object. More...
|
|
void | SetReferenceCount (int) |
| Sets the reference count. More...
|
|
bool | GetIsInMemkind () const |
| A local state flag that remembers whether this object lives in the normal or extended memory space. 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...
|
|