VTK  9.6.20260515
vtkAbstractPointLocator.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
20
21#ifndef vtkAbstractPointLocator_h
22#define vtkAbstractPointLocator_h
23
24#include "vtkCommonDataModelModule.h" // For export macro
25#include "vtkLocator.h"
26
27VTK_ABI_NAMESPACE_BEGIN
28class vtkIdList;
29
30class VTKCOMMONDATAMODEL_EXPORT vtkAbstractPointLocator : public vtkLocator
31{
32public:
34
38 void PrintSelf(ostream& os, vtkIndent indent) override;
40
42
48 vtkSetClampMacro(Tolerance, double, 0.0, VTK_DOUBLE_MAX);
49 vtkGetMacro(Tolerance, double);
51
53
59 virtual vtkIdType FindClosestPoint(const double x[3]) = 0;
60 vtkIdType FindClosestPoint(double x, double y, double z);
62
69 double radius, const double x[3], double& dist2) = 0;
70
72
80 virtual void FindClosestNPoints(int N, const double x[3], vtkIdList* result) = 0;
81 void FindClosestNPoints(int N, double x, double y, double z, vtkIdList* result);
83
85
91 virtual void FindPointsWithinRadius(double R, const double x[3], vtkIdList* result) = 0;
92 void FindPointsWithinRadius(double R, double x, double y, double z, vtkIdList* result);
94
96
99 virtual double* GetBounds() { return this->Bounds; }
100 virtual void GetBounds(double*);
102
104
110
111protected:
114
115 double Bounds[6]; // bounds of points
116 double Tolerance; // for performing merging
117 vtkIdType NumberOfBuckets; // total size of locator
118
119private:
121 void operator=(const vtkAbstractPointLocator&) = delete;
122};
123
124VTK_ABI_NAMESPACE_END
125#endif
~vtkAbstractPointLocator() override
virtual void GetBounds(double *)
Provide an accessor to the bounds.
virtual void FindPointsWithinRadius(double R, const double x[3], vtkIdList *result)=0
Find all points within a specified radius R of position x.
virtual vtkIdType FindClosestPoint(const double x[3])=0
Given a position x, return the id of the point closest to it.
virtual double * GetBounds()
Provide an accessor to the bounds.
vtkIdType FindClosestPoint(double x, double y, double z)
Given a position x, return the id of the point closest to it.
virtual void FindClosestNPoints(int N, const double x[3], vtkIdList *result)=0
Find the closest N points to a position.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard type and print methods.
void FindPointsWithinRadius(double R, double x, double y, double z, vtkIdList *result)
Find all points within a specified radius R of position x.
void FindClosestNPoints(int N, double x, double y, double z, vtkIdList *result)
Find the closest N points to a position.
virtual vtkIdType FindClosestPointWithinRadius(double radius, const double x[3], double &dist2)=0
Given a position x and a radius r, return the id of the point closest to the point in that radius.
list of point or cell ids
Definition vtkIdList.h:135
a simple class to control print indentation
Definition vtkIndent.h:108
int vtkIdType
Definition vtkType.h:363
#define VTK_DOUBLE_MAX
Definition vtkType.h:202