 |
VTK
9.1.0
|
Go to the documentation of this file.
67 #ifndef vtkIncrementalOctreePointLocator_h
68 #define vtkIncrementalOctreePointLocator_h
70 #include "vtkCommonDataModelModule.h"
99 vtkSetClampMacro(MaxPointsPerLeaf,
int, 16, 256);
100 vtkGetMacro(MaxPointsPerLeaf,
int);
151 vtkGetMacro(NumberOfNodes,
int);
361 int MaxPointsPerLeaf;
362 double InsertTolerance2;
363 double OctreeMaxDimSize;
410 vtkIdType FindClosestPointInSphere(
const double point[3],
double radius2,
427 vtkIdType FindClosestPointInSphereWithoutTolerance(
435 void FindPointsWithinSquaredRadius(
453 vtkIdType FindClosestPointInSphereWithTolerance(
475 vtkIdType IsInsertedPointForZeroTolerance(
487 vtkIdType IsInsertedPointForNonZeroTolerance(
506 vtkIdType FindDuplicateFloatTypePointInVisitedLeafNode(
516 vtkIdType FindDuplicateDoubleTypePointInVisitedLeafNode(
represent and manipulate 3D points
void FindPointsWithinSquaredRadius(double R2, const double x[3], vtkIdList *result)
Find all points within a squared radius R2 relative to a given point x.
virtual vtkIdType IsInsertedPoint(double x, double y, double z)=0
Determine whether or not a given point has been inserted.
double * GetBounds() override
Get the spatial bounding box of the octree.
virtual vtkIdType FindClosestPoint(double x, double y, double z)
Given a point (x, y, z), return the id of the closest point.
static vtkIncrementalOctreePointLocator * New()
int GetNumberOfPoints()
Get the number of points maintained by the octree.
void InsertPointWithoutChecking(const double point[3], vtkIdType &pntId, int insert)
"Insert" a point to the octree without any checking.
virtual double * GetBounds()
Provide an accessor to the bounds.
void BuildLocator() override
Load points from a dataset to construct an octree for point location.
int InsertUniquePoint(const double point[3], vtkIdType &pntId) override
Insert a point to the octree unless there has been a duplicate point.
vtkIncrementalOctreePointLocator()
void GenerateRepresentation(int level, vtkPolyData *polysData, bool(*UserGetBounds)(void *data, vtkIncrementalOctreeNode *node, double *bounds), void *data)
vtkIdType FindClosestPointWithinSquaredRadius(double radius2, const double x[3], double &dist2)
Given a point x and a squared radius radius2, return the id of the closest point within the radius an...
void InsertPoint(vtkIdType ptId, const double x[3]) override
Insert a given point into the octree with a specified point index ptId.
int GetNumberOfLevels()
Returns the maximum level of the tree.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard type and print methods.
Incremental octree in support of both point location and point insertion.
vtkIdType FindClosestPointWithinRadius(double radius, const double x[3], double &dist2) override
Given a point x and a radius, return the id of the closest point within the radius and the associated...
int InitPointInsertion(vtkPoints *points, const double bounds[6]) override
Initialize the point insertion process.
void GetBounds(T a, double bds[6])
a simple class to control print indentation
object to represent cell connectivity
dynamic, self-adjusting array of int
vtkIdType InsertNextPoint(const double x[3]) override
Insert a given point into the octree and return the point index.
Abstract class in support of both point location and point insertion.
list of point or cell ids
void GetBounds(double *bounds) override
Get the spatial bounding box of the octree.
vtkIdType IsInsertedPoint(double x, double y, double z) override
Determine whether or not a given point has been inserted into the octree.
Octree node constituting incremental octree (in support of both point location and point insertion)
int InitPointInsertion(vtkPoints *points, const double bounds[6], vtkIdType estSize) override
Initialize the point insertion process.
~vtkIncrementalOctreePointLocator() override
vtkIdType IsInsertedPoint(const double x[3]) override
Determine whether or not a given point has been inserted into the octree.
void FindClosestNPoints(int N, const double x[3], vtkIdList *result) override
Find the closest N points to a given point.
void FindPointsWithinRadius(double R, const double x[3], vtkIdList *result) override
Find all points within a radius R relative to a given point x.
vtkIdType FindClosestPoint(const double x[3]) override
Given a point x, return the id of the closest point.
void FreeSearchStructure() override
Delete the octree search structure.
virtual vtkIdType FindClosestPoint(double x, double y, double z, double *miniDist2)
Given a point (x, y, z), return the id of the closest point and the associated minimum squared distan...
concrete dataset represents vertices, lines, polygons, and triangle strips
void Initialize() override
Delete the octree search structure.
void GenerateRepresentation(int level, vtkPolyData *polysData) override
Create a polygonal representation of the octree 'level': for each node on the specified level we gene...
vtkIncrementalOctreeNode * GetRoot() const
virtual void FreeSearchStructure()=0
Free the memory required for the spatial data structure.
virtual vtkIdType FindClosestPoint(const double x[3], double *miniDist2)
Given a point x, return the id of the closest point and the associated minimum squared distance (via ...
vtkIdType FindClosestInsertedPoint(const double x[3]) override
Given a point x assumed to be covered by the octree, return the index of the closest in-octree point ...