VTK  9.5.2
vtkKdTree.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
3// SPDX-License-Identifier: BSD-3-Clause
4
92
93#ifndef vtkKdTree_h
94#define vtkKdTree_h
95
96#include "vtkCommonDataModelModule.h" // For export macro
97#include "vtkLocator.h"
98
99VTK_ABI_NAMESPACE_BEGIN
100class vtkTimerLog;
101class vtkIdList;
102class vtkIdTypeArray;
103class vtkIntArray;
104class vtkPointSet;
105class vtkPoints;
106class vtkCellArray;
107class vtkCell;
108class vtkKdNode;
109class vtkBSPCuts;
112
113class VTKCOMMONDATAMODEL_EXPORT vtkKdTree : public vtkLocator
114{
115public:
116 vtkTypeMacro(vtkKdTree, vtkLocator);
117 void PrintSelf(ostream& os, vtkIndent indent) override;
118
119 static vtkKdTree* New();
120
122
125 vtkBooleanMacro(Timing, vtkTypeBool);
126 vtkSetMacro(Timing, vtkTypeBool);
127 vtkGetMacro(Timing, vtkTypeBool);
129
131
134 vtkSetMacro(MinCells, int);
135 vtkGetMacro(MinCells, int);
137
144
145 vtkGetMacro(NumberOfRegionsOrLess, int);
146 vtkSetMacro(NumberOfRegionsOrLess, int);
147
154
155 vtkGetMacro(NumberOfRegionsOrMore, int);
156 vtkSetMacro(NumberOfRegionsOrMore, int);
157
164
165 vtkGetMacro(FudgeFactor, double);
166 vtkSetMacro(FudgeFactor, double);
167
172
173 vtkGetObjectMacro(Cuts, vtkBSPCuts);
174
180
181 void SetCuts(vtkBSPCuts* cuts);
182
187
192
197
202
207
212
217
227
232 void SetDataSet(vtkDataSet* set) override;
233
238 virtual void AddDataSet(vtkDataSet* set);
239
241
244 virtual void RemoveDataSet(int index);
245 virtual void RemoveDataSet(vtkDataSet* set);
246 virtual void RemoveAllDataSets();
248
253
259
264
269 vtkDataSet* GetDataSet() override { return this->GetDataSet(0); }
270
272
275 vtkGetObjectMacro(DataSets, vtkDataSetCollection);
277
283
288 void GetBounds(double* bounds);
289
297
298 void SetNewBounds(double* bounds);
299
301
304 vtkGetMacro(NumberOfRegions, int);
306
310 void GetRegionBounds(int regionID, double bounds[6]);
311
315 void GetRegionDataBounds(int regionID, double bounds[6]);
316
318
321 void PrintTree();
324
328 void PrintRegion(int id);
329
341
342 void CreateCellLists(int dataSetIndex, int* regionReqList, int reqListSize);
343 void CreateCellLists(vtkDataSet* set, int* regionReqList, int reqListSize);
344 void CreateCellLists(int* regionReqList, int listSize);
346
348
359
364
369 vtkIdList* GetCellList(int regionID);
370
382
384
405 vtkIntArray* regions, int set, vtkIdList* inRegionCells, vtkIdList* onBoundaryCells);
407 vtkIntArray* regions, vtkDataSet* set, vtkIdList* inRegionCells, vtkIdList* onBoundaryCells);
409 vtkIntArray* regions, vtkIdList* inRegionCells, vtkIdList* onBoundaryCells);
411
413
420 int GetRegionContainingCell(int set, vtkIdType cellID);
423
433
437 int GetRegionContainingPoint(double x, double y, double z);
438
444 void BuildLocator() override;
445
449 void ForceBuildLocator() override;
450
464
465 int MinimalNumberOfConvexSubRegions(vtkIntArray* regionIdList, double** convexRegionBounds);
466
475 const double directionOfProjection[3], vtkIntArray* orderedList);
476
485 vtkIntArray* regionIds, const double directionOfProjection[3], vtkIntArray* orderedList);
486
495 const double directionOfProjection[3], vtkIntArray* orderedList);
496
505 vtkIntArray* regionIds, const double directionOfProjection[3], vtkIntArray* orderedList);
506
508
523 void BuildLocatorFromPoints(vtkPoints** ptArray, int numPtArrays);
525
541
543
549 vtkIdType FindPoint(double x, double y, double z);
551
553
558 vtkIdType FindClosestPoint(double* x, double& dist2);
559 vtkIdType FindClosestPoint(double x, double y, double z, double& dist2);
561
567 vtkIdType FindClosestPointWithinRadius(double radius, const double x[3], double& dist2);
568
570
575 vtkIdType FindClosestPointInRegion(int regionId, double* x, double& dist2);
576 vtkIdType FindClosestPointInRegion(int regionId, double x, double y, double z, double& dist2);
578
585 void FindPointsWithinRadius(double R, const double x[3], vtkIdList* result);
586
595 void FindClosestNPoints(int N, const double x[3], vtkIdList* result);
596
602
607 void FreeSearchStructure() override;
608
614 void GenerateRepresentation(int level, vtkPolyData* pd) override;
615
620 void GenerateRepresentation(int* regionList, int len, vtkPolyData* pd);
621
623
633
637 virtual void PrintTiming(ostream& os, vtkIndent indent);
638
643 virtual int NewGeometry();
644
650 virtual int NewGeometry(vtkDataSet** sets, int numDataSets);
651
657 virtual void InvalidateGeometry();
658
663
665
672 void FindPointsInArea(double* area, vtkIdTypeArray* ids, bool clearArray = true);
673
674protected:
676 ~vtkKdTree() override;
677
678 void BuildLocatorInternal() override;
679
682
684
685 int ProcessUserDefinedCuts(double* bounds);
686
687 void SetCuts(vtkBSPCuts* cuts, int userDefined);
688
693
695
702
703 int DivideTest(int numberOfPoints, int level);
704
705 enum
706 {
707 XDIM = 0, // don't change these values
708 YDIM = 1,
710 };
711
713
715 vtkKdNode** RegionList; // indexed by region ID
716
718
720
723 void SetActualLevel() { this->Level = vtkKdTree::ComputeLevel(this->Top); }
724
729
730 void GetRegionsAtLevel(int level, vtkKdNode** nodes);
731
736
737 static void GetLeafNodeIds(vtkKdNode* node, vtkIntArray* ids);
738
742
744
749
750 int GetDataSetsNumberOfCells(int set1, int set2);
751
757
758 void ComputeCellCenter(vtkDataSet* set, int cellId, float* center);
759 void ComputeCellCenter(vtkDataSet* set, int cellId, double* center);
760
769
771 float* ComputeCellCenters(int set);
773
775
781 void UpdateProgress(double amount);
782
784
787 vtkSetClampMacro(Progress, double, 0.0, 1.0);
788 vtkGetMacro(Progress, double);
790
791 // So that each suboperation can report progress
792 // in [0,1], yet we will be able to report a global
793 // progress. Sub-operations must use UpdateSubOperationProgress()
794 // for this to work.
797
798 // Update progress for a sub-operation. \c amount goes from 0.0 to 1.0.
799 // Actual progress is given by
800 // (this->ProgressOffset + this->ProgressScale* amount).
801 void UpdateSubOperationProgress(double amount);
802
803 static void SetNewBounds_(vtkKdNode* kd, double* b, int* fixDim);
804 static void CopyChildNodes(vtkKdNode* to, vtkKdNode* from);
805 static void CopyKdNode(vtkKdNode* to, vtkKdNode* from);
808
809 // Recursive helper for public FindPointsWithinRadius
810 void FindPointsWithinRadius(vtkKdNode* node, double R2, const double x[3], vtkIdList* ids);
811
812 // Recursive helper for public FindPointsWithinRadius
814
815 // Recursive helper for public FindPointsInArea
816 void FindPointsInArea(vtkKdNode* node, double* area, vtkIdTypeArray* ids);
817
818 // Recursive helper for public FindPointsInArea
820
821 int DivideRegion(vtkKdNode* kd, float* c1, int* ids, int nlevels);
822
823 void DoMedianFind(vtkKdNode* kd, float* c1, int* ids, int d1, int d2, int d3);
824
826
828 {
829 vtkDataSet* dataSet; // cell lists for which data set
830 int* regionIds; // nullptr if listing all regions
835 };
836
838 vtkIdList* GetList(int regionId, vtkIdList** which);
839
840 void ComputeCellCenter(vtkCell* cell, double* center, double* weights);
841
844 vtkKdNode* kd, vtkPoints* pts, vtkCellArray* polys, int level);
845
848 vtkKdNode* kd, vtkPoints* pts, vtkCellArray* polys, int level);
849
850 void AddPolys(vtkKdNode* kd, vtkPoints* pts, vtkCellArray* polys);
851
852 void printTree_(int verbose);
853
855 int regionId, float* point, int** pointsSoFar, int* len, float tolerance, float tolerance2);
856
857 int SearchRegionForDuplicate(float* point, int* pointsSoFar, int len, float tolerance2);
858
859 int FindClosestPointInRegion_(int regionId, double x, double y, double z, double& dist2);
860
862 double x, double y, double z, double radius, int skipRegion, double& dist2);
863
865 vtkIntArray* IdsOfInterest, const double dop[3], vtkIntArray* orderedList);
866
868 vtkIntArray* IdsOfInterest, const double dir[3], int nextId);
869
871 vtkIntArray* IdsOfInterest, const double pos[3], vtkIntArray* orderedList);
872
874 vtkIntArray* IdsOfInterest, const double pos[3], int nextId);
875
876 static int ConvexSubRegions_(int* ids, int len, vtkKdNode* tree, vtkKdNode** nodes);
877 static int FoundId(vtkIntArray* idArray, int id);
878
879 void SetInputDataInfo(int i, int dims[3], double origin[3], double spacing[3]);
880 int CheckInputDataInfo(int i, int dims[3], double origin[3], double spacing[3]);
882
883 static void printTree_P(vtkKdNode* kd, int depth, int verbose);
884
885 static int MidValue(int dim, float* c1, int nvals, double& coord);
886
887 static int Select(int dim, float* c1, int* ids, int nvals, double& coord);
888 static float FindMaxLeftHalf(int dim, float* c1, int K);
889 static void Select_(int dim, float* X, int* ids, int L, int R, int K);
890
891 static int ComputeLevel(vtkKdNode* kd);
892 static int SelfOrder(int id, vtkKdNode* kd);
893 static int findRegion(vtkKdNode* node, float x, float y, float z);
894 static int findRegion(vtkKdNode* node, double x, double y, double z);
895
896 static vtkKdNode** GetRegionsAtLevel_(int level, vtkKdNode** nodes, vtkKdNode* kd);
897
898 static void AddNewRegions(vtkKdNode* kd, float* c1, int midpt, int dim, double coord);
899
901
904
906 double CellBoundsCache[6]; // to optimize IntersectsCell()
907
909
911
912 // Region Ids, by data set by cell id - this list is large (one
913 // int per cell) but accelerates creation of cell lists
914
916
918 int NumberOfRegions; // number of leaf nodes
919
921 double FudgeFactor; // a very small distance, relative to the dataset's size
922
923 // These instance variables are used by the special locator created
924 // to find duplicate points. (BuildLocatorFromPoints)
925
930
931 float MaxWidth;
932
933 // These Last* values are here to save state so we can
934 // determine later if k-d tree must be rebuilt.
935
942 double* LastBounds;
945
947 double Progress;
948
949 vtkKdTree(const vtkKdTree&) = delete;
950 void operator=(const vtkKdTree&) = delete;
951};
952VTK_ABI_NAMESPACE_END
953#endif
This class represents an axis-aligned Binary Spatial Partitioning of a 3D space.
Definition vtkBSPCuts.h:31
Perform calculations (mostly intersection calculations) on regions of a 3D binary spatial partitionin...
object to represent cell connectivity
abstract class to specify cell behavior
Definition vtkCell.h:130
maintain an unordered list of dataset objects
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
list of point or cell ids
Definition vtkIdList.h:133
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Definition vtkIndent.h:108
dynamic, self-adjusting array of int
This class represents a single spatial region in an 3D axis aligned binary spatial partitioning.
Definition vtkKdNode.h:32
void SelfRegister(vtkKdNode *kd)
vtkIdList * GetBoundaryCellList(int regionID)
The cell list obtained with GetCellList is the list of all cells such that their centroid is containe...
void NewPartitioningRequest(int req)
void SetInputDataInfo(int i, int dims[3], double origin[3], double spacing[3])
virtual void RemoveAllDataSets()
Remove the given data set.
int * LastDataSetType
Definition vtkKdTree.h:940
vtkTypeBool Timing
Definition vtkKdTree.h:920
vtkIdTypeArray * GetPointsInRegion(int regionId)
Get a list of the original IDs of all points in a region.
int DivideRegion(vtkKdNode *kd, float *c1, int *ids, int nlevels)
static void CopyKdNode(vtkKdNode *to, vtkKdNode *from)
int MinimalNumberOfConvexSubRegions(vtkIntArray *regionIdList, double **convexRegionBounds)
Given a list of region IDs, determine the decomposition of these regions into the minimal number of c...
vtkDataSetCollection * DataSets
Definition vtkKdTree.h:774
void CreateCellLists(int *regionReqList, int listSize)
int ValidDirections
Definition vtkKdTree.h:712
vtkIdType FindPoint(double x, double y, double z)
Find the Id of the point that was previously supplied to BuildLocatorFromPoints().
int NumberOfRegions
Definition vtkKdTree.h:918
int GetRegionContainingCell(vtkIdType cellID)
Get the id of the region containing the cell centroid.
void GetRegionDataBounds(int regionID, double bounds[6])
Get the bounds of the data within the k-d tree region.
void InitializeCellLists()
virtual void InvalidateGeometry()
Forget about the last geometry used.
void OmitYZPartitioning()
Omit partitions along the Y and Z axes, yielding slabs along X.
vtkTypeBool IncludeRegionBoundaryCells
Definition vtkKdTree.h:905
static int SelfOrder(int id, vtkKdNode *kd)
void OmitZXPartitioning()
Omit partitions along the Z and X axes, yielding slabs along Y.
vtkIdType GetCellLists(vtkIntArray *regions, vtkDataSet *set, vtkIdList *inRegionCells, vtkIdList *onBoundaryCells)
For a list of regions, get two cell lists.
int LastDataCacheSize
Definition vtkKdTree.h:937
float MaxWidth
Definition vtkKdTree.h:931
vtkIdType GetCellLists(vtkIntArray *regions, int set, vtkIdList *inRegionCells, vtkIdList *onBoundaryCells)
For a list of regions, get two cell lists.
void BuildRegionList()
void OmitNoPartitioning()
Partition along all three axes - this is the default.
void BuildLocatorInternal() override
This function is not pure virtual to maintain backwards compatibility.
int GetNumberOfCells()
Returns the total number of cells in all the data sets.
void GenerateRepresentationDataBounds(int level, vtkPolyData *pd)
vtkDataSet * GetDataSet(int n)
Get the nth defined data set in the spatial partitioning.
float * ComputeCellCenters(int set)
vtkIdTypeArray * BuildMapForDuplicatePoints(float tolerance)
This call returns a mapping from the original point IDs supplied to BuildLocatorFromPoints to a subse...
void printTree_(int verbose)
void SetDataSet(vtkDataSet *set) override
This class can compute a spatial decomposition based on the cells in a list of one or more input data...
int NumberOfRegionsOrLess
Definition vtkKdTree.h:902
static int Select(int dim, float *c1, int *ids, int nvals, double &coord)
void UpdateSubOperationProgress(double amount)
void CreateCellLists()
vtkDataSet ** LastInputDataSets
Definition vtkKdTree.h:938
static int ViewOrderRegionsInDirection_P(vtkKdNode *node, vtkIntArray *list, vtkIntArray *IdsOfInterest, const double dir[3], int nextId)
void ComputeCellCenter(vtkCell *cell, double *center, double *weights)
double * LastInputDataInfo
Definition vtkKdTree.h:941
static vtkKdNode * CopyTree(vtkKdNode *kd)
Create a copy of the binary tree representation of the k-d tree spatial partitioning provided.
vtkBSPCuts * Cuts
Definition vtkKdTree.h:946
vtkBSPIntersections * BSPCalculator
Definition vtkKdTree.h:680
void SetCuts(vtkBSPCuts *cuts, int userDefined)
vtkKdNode ** RegionList
Definition vtkKdTree.h:715
int SearchNeighborsForDuplicate(int regionId, float *point, int **pointsSoFar, int *len, float tolerance, float tolerance2)
void GenerateRepresentation(int level, vtkPolyData *pd) override
Create a polydata representation of the boundaries of the k-d tree regions.
void AddAllPointsInRegion(vtkKdNode *node, vtkIdList *ids)
int LastNumDataSets
Definition vtkKdTree.h:936
static float FindMaxLeftHalf(int dim, float *c1, int K)
int * LocatorRegionLocation
Definition vtkKdTree.h:929
void CreateCellLists(int dataSetIndex, int *regionReqList, int reqListSize)
Create a list for each of the requested regions, listing the IDs of all cells whose centroid falls in...
void PrintTree()
Print out nodes of kd tree.
void FreeSearchStructure() override
Delete the k-d tree data structure.
virtual void RemoveDataSet(vtkDataSet *set)
Remove the given data set.
int CheckInputDataInfo(int i, int dims[3], double origin[3], double spacing[3])
virtual int NewGeometry(vtkDataSet **sets, int numDataSets)
Return 1 if the geometry of these data sets differs for the geometry of the last data sets used to bu...
double CellBoundsCache[6]
Definition vtkKdTree.h:906
static int findRegion(vtkKdNode *node, float x, float y, float z)
void DeleteCellLists()
Free the memory used by the cell lists.
vtkIdType * LastNumPoints
Definition vtkKdTree.h:943
void _generateRepresentationWholeSpace(vtkKdNode *kd, vtkPoints *pts, vtkCellArray *polys, int level)
void ClearLastBuildCache()
static int ViewOrderRegionsFromPosition_P(vtkKdNode *node, vtkIntArray *list, vtkIntArray *IdsOfInterest, const double pos[3], int nextId)
vtkIdType FindClosestPointWithinRadius(double radius, const double x[3], double &dist2)
Given a position x and a radius r, return the id of the point closest to the point in that radius.
void OmitYPartitioning()
Omit partitions along the Y axis, yielding shafts in the Y direction.
void GetBounds(double *bounds)
Get the spatial bounds of the entire k-d tree space.
int NumberOfLocatorPoints
Definition vtkKdTree.h:926
static void SetDataBoundsToSpatialBounds(vtkKdNode *kd)
static void CopyChildNodes(vtkKdNode *to, vtkKdNode *from)
float * ComputeCellCenters(vtkDataSet *set)
double * LastBounds
Definition vtkKdTree.h:942
int GetNumberOfDataSets()
Get the number of data sets included in spatial partitioning.
struct cellList_ CellList
Definition vtkKdTree.h:910
static int ComputeLevel(vtkKdNode *kd)
int GetRegionContainingCell(int set, vtkIdType cellID)
Get the id of the region containing the cell centroid.
static vtkKdTree * New()
static int findRegion(vtkKdNode *node, double x, double y, double z)
void UpdateProgress(double amount)
Modelled on vtkAlgorithm::UpdateProgress().
void FindPointsWithinRadius(double R, const double x[3], vtkIdList *result)
Find all points within a specified radius R of position x.
vtkDataSet * GetDataSet() override
Return the 0'th data set.
Definition vtkKdTree.h:269
int NumberOfRegionsOrMore
Definition vtkKdTree.h:903
void SetNewBounds(double *bounds)
There are certain applications where you want the bounds of the k-d tree space to be at least as larg...
int ProcessUserDefinedCuts(double *bounds)
static void AddNewRegions(vtkKdNode *kd, float *c1, int midpt, int dim, double coord)
static int FoundId(vtkIntArray *idArray, int id)
double ProgressScale
Definition vtkKdTree.h:795
void OmitZPartitioning()
Omit partitions along the Z axis, yielding shafts in the Z direction.
void AddAllPointsInRegion(vtkKdNode *node, vtkIdTypeArray *ids)
void GenerateRepresentation(int *regionList, int len, vtkPolyData *pd)
Generate a polygonal representation of a list of regions.
int * LocatorIds
Definition vtkKdTree.h:928
int ViewOrderRegionsInDirection(vtkIntArray *regionIds, const double directionOfProjection[3], vtkIntArray *orderedList)
Given a direction of projection and a list of k-d tree region IDs, this method, creates a list of the...
void FindPointsWithinRadius(vtkKdNode *node, double R2, const double x[3], vtkIdList *ids)
double ProgressOffset
Definition vtkKdTree.h:796
void ComputeCellCenter(vtkDataSet *set, int cellId, double *center)
void BuildLocatorFromPoints(vtkPoints **ptArray, int numPtArrays)
This is a special purpose locator that builds a k-d tree to find duplicate and near-by points.
static void Select_(int dim, float *X, int *ids, int L, int R, int K)
static vtkKdNode ** GetRegionsAtLevel_(int level, vtkKdNode **nodes, vtkKdNode *kd)
void operator=(const vtkKdTree &)=delete
void BuildLocator() override
Create the k-d tree decomposition of the cells of the data set or data sets.
void SetActualLevel()
Definition vtkKdTree.h:723
void _generateRepresentationDataBounds(vtkKdNode *kd, vtkPoints *pts, vtkCellArray *polys, int level)
void BuildLocatorFromPoints(vtkPointSet *pointset)
This is a special purpose locator that builds a k-d tree to find duplicate and near-by points.
void PrintVerboseTree()
Print out nodes of kd tree.
vtkIdType FindClosestPointInRegion(int regionId, double *x, double &dist2)
Find the Id of the point in the given region which is closest to the given point.
vtkIdType FindClosestPoint(double *x, double &dist2)
Find the Id of the point that was previously supplied to BuildLocatorFromPoints() which is closest to...
double Progress
Definition vtkKdTree.h:947
int ViewOrderRegionsInDirection_(vtkIntArray *IdsOfInterest, const double dop[3], vtkIntArray *orderedList)
static int MidValue(int dim, float *c1, int nvals, double &coord)
int UserDefinedCuts
Definition vtkKdTree.h:681
virtual int SelectCutDirection(vtkKdNode *kd)
~vtkKdTree() override
vtkIdType FindClosestPoint(double x, double y, double z, double &dist2)
Find the Id of the point that was previously supplied to BuildLocatorFromPoints() which is closest to...
vtkTypeBool GenerateRepresentationUsingDataBounds
Definition vtkKdTree.h:908
int MinCells
Definition vtkKdTree.h:917
virtual void AddDataSet(vtkDataSet *set)
This class can compute a spatial decomposition based on the cells in a list of one or more input data...
int ViewOrderRegionsFromPosition(vtkIntArray *regionIds, const double directionOfProjection[3], vtkIntArray *orderedList)
Given a camera position and a list of k-d tree region IDs, this method, creates a list of the k-d tre...
double FudgeFactor
Definition vtkKdTree.h:921
void ComputeCellCenter(vtkDataSet *set, int cellId, float *center)
Get or compute the center of one cell.
void CreateCellLists(vtkDataSet *set, int *regionReqList, int reqListSize)
virtual void PrintTiming(ostream &os, vtkIndent indent)
Print timing of k-d tree build.
void FindPointsInArea(vtkKdNode *node, double *area, vtkIdTypeArray *ids)
static void printTree_P(vtkKdNode *kd, int depth, int verbose)
void UpdateBuildTime()
Save enough state so NewGeometry() can work, and update the BuildTime time stamp.
virtual int NewGeometry()
Return 1 if the geometry of the input data sets has changed since the last time the k-d tree was buil...
int FindClosestPointInSphere(double x, double y, double z, double radius, int skipRegion, double &dist2)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetCalculator(vtkKdNode *kd)
vtkKdTree(const vtkKdTree &)=delete
int GetRegionContainingCell(vtkDataSet *set, vtkIdType cellID)
Get the id of the region containing the cell centroid.
int ViewOrderAllRegionsFromPosition(const double directionOfProjection[3], vtkIntArray *orderedList)
Given a camera position (typically obtained with vtkCamera::GetPosition()), this method,...
int ViewOrderRegionsFromPosition_(vtkIntArray *IdsOfInterest, const double pos[3], vtkIntArray *orderedList)
vtkTimerLog * TimerLog
Definition vtkKdTree.h:717
vtkIdList * GetCellList(int regionID)
Get the cell list for a region.
void GetRegionsAtLevel(int level, vtkKdNode **nodes)
Get back a list of the nodes at a specified level, nodes must be preallocated to hold 2^^(level) node...
unsigned long * LastDataSetObserverTags
Definition vtkKdTree.h:939
void OmitXPartitioning()
Omit partitions along the X axis, yielding shafts in the X direction.
int * AllGetRegionContainingCell()
Get a list (in order by data set by cell id) of the region IDs of the region containing the centroid ...
static void GetLeafNodeIds(vtkKdNode *node, vtkIntArray *ids)
Adds to the vtkIntArray the list of region IDs of all leaf nodes in the given node.
int * CellRegionList
Definition vtkKdTree.h:915
int ViewOrderAllRegionsInDirection(const double directionOfProjection[3], vtkIntArray *orderedList)
Given a direction of projection (typically obtained with vtkCamera::GetDirectionOfProjection()),...
void DoMedianFind(vtkKdNode *kd, float *c1, int *ids, int d1, int d2, int d3)
void PrintRegion(int id)
Print out leaf node data for given id.
static void SetNewBounds_(vtkKdNode *kd, double *b, int *fixDim)
vtkIdType FindClosestPointInRegion(int regionId, double x, double y, double z, double &dist2)
Find the Id of the point in the given region which is closest to the given point.
int DivideTest(int numberOfPoints, int level)
Prior to dividing a region at level "level", of size "numberOfPoints", apply the tests implied by Min...
virtual void RemoveDataSet(int index)
Remove the given data set.
static int ConvexSubRegions_(int *ids, int len, vtkKdNode *tree, vtkKdNode **nodes)
void OmitXYPartitioning()
Omit partitions along the X and Y axes, yielding slabs along Z.
void BuildLocatorFromPoints(vtkPoints *ptArray)
This is a special purpose locator that builds a k-d tree to find duplicate and near-by points.
void GenerateRepresentationWholeSpace(int level, vtkPolyData *pd)
vtkIdList * GetList(int regionId, vtkIdList **which)
int SearchRegionForDuplicate(float *point, int *pointsSoFar, int len, float tolerance2)
static void DeleteAllDescendants(vtkKdNode *nd)
void ForceBuildLocator() override
Build the locator from the input dataset (even if UseExistingSearchStructure is on).
void AddPolys(vtkKdNode *kd, vtkPoints *pts, vtkCellArray *polys)
vtkIdType FindPoint(double *x)
Find the Id of the point that was previously supplied to BuildLocatorFromPoints().
vtkIdType GetCellLists(vtkIntArray *regions, vtkIdList *inRegionCells, vtkIdList *onBoundaryCells)
For a list of regions, get two cell lists.
vtkIdType * LastNumCells
Definition vtkKdTree.h:944
void GetRegionBounds(int regionID, double bounds[6])
Get the spatial bounds of k-d tree region.
int GetRegionContainingPoint(double x, double y, double z)
Get the id of the region containing the specified location.
int GetDataSetsNumberOfCells(int set1, int set2)
Returns the total number of cells in data set 1 through data set 2.
void SetCuts(vtkBSPCuts *cuts)
Normally the k-d tree is computed from the dataset(s) provided in SetDataSet.
void FindPointsInArea(double *area, vtkIdTypeArray *ids, bool clearArray=true)
Fill ids with points found in area.
void FindClosestNPoints(int N, const double x[3], vtkIdList *result)
Find the closest N points to a position.
static void ZeroNumberOfPoints(vtkKdNode *kd)
float * ComputeCellCenters()
Compute and return a pointer to a list of all cell centers, in order by data set by cell Id.
vtkKdNode * Top
Definition vtkKdTree.h:714
int FindClosestPointInRegion_(int regionId, double x, double y, double z, double &dist2)
int GetDataSetIndex(vtkDataSet *set)
Return the index of the given data set.
float * LocatorPoints
Definition vtkKdTree.h:927
concrete class for storing a set of points
Definition vtkPointSet.h:98
represent and manipulate 3D points
Definition vtkPoints.h:139
concrete dataset represents vertices, lines, polygons, and triangle strips
Timer support and logging.
vtkIdList ** boundaryCells
Definition vtkKdTree.h:833
vtkIdList ** cells
Definition vtkKdTree.h:832
vtkIdList * emptyList
Definition vtkKdTree.h:834
vtkDataSet * dataSet
Definition vtkKdTree.h:829
int vtkTypeBool
Definition vtkABI.h:64
int vtkIdType
Definition vtkType.h:332