Loading [MathJax]/extensions/tex2jax.js
VTK  9.4.20250403
vtkHyperTreeGridGeometricLocator.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
26#ifndef vtkHyperTreeGridGeometricLocator_h
27#define vtkHyperTreeGridGeometricLocator_h
28
29#include "vtkCommonDataModelModule.h" //For export macro
31
32VTK_ABI_NAMESPACE_BEGIN
33class vtkGenericCell;
34class vtkPoints;
35class vtkIdList;
37
38class VTKCOMMONDATAMODEL_EXPORT vtkHyperTreeGridGeometricLocator : public vtkHyperTreeGridLocator
39{
40public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
45
49 void SetHTG(vtkHyperTreeGrid* candHTG) override;
50
56 vtkIdType Search(const double point[3]) override;
57
65
76 vtkIdType FindCell(const double point[3], double tol, vtkGenericCell* cell, int& subId,
77 double pcoords[3], double* weights) override;
78
92 int IntersectWithLine(const double p0[3], const double p1[3], double tol, double& t, double x[3],
93 double pcoords[3], int& subId, vtkIdType& cellId, vtkGenericCell* cell) override;
94
105 int IntersectWithLine(const double p0[3], const double p1[3], double tol, vtkPoints* points,
106 vtkIdList* cellIds, vtkGenericCell* cell) override;
107
108protected:
111
116
120 vtkIdType RecurseSingleIntersectWithLine(const double p0[3], const double p1[3], double tol,
121 vtkHyperTreeGridNonOrientedGeometryCursor* cursor, vtkGenericCell* cell, double& t, int& subId,
122 double x[3], double pcoords[3]) const;
123
127 void RecurseAllIntersectsWithLine(const double p0[3], const double p1[3], double tol,
128 vtkHyperTreeGridNonOrientedGeometryCursor* cursor, std::vector<double>* ts, vtkPoints* points,
129 vtkIdList* cellIds, vtkGenericCell* cell) const;
130
131private:
133 void operator=(const vtkHyperTreeGridGeometricLocator&) = delete;
134
135 struct RecurseTreesFunctor;
136
142 bool CheckLeafOrChildrenMasked(vtkHyperTreeGridNonOrientedGeometryCursor* cursor) const;
143
147 vtkIdType FindChildIndex(unsigned int dim, unsigned int bf, const double normalizedPt[3]) const;
148
155 bool ConstructCell(vtkHyperTreeGridNonOrientedGeometryCursor* cursor, vtkGenericCell* cell) const;
156
164 bool ConstructCell(const double* origin, const double* size, vtkGenericCell* cell) const;
165
171 void GetZeroLevelOriginAndSize(double* origin, double* sizes) const;
172
176 std::vector<int> GetSortingMap(const std::vector<double>& other) const;
177
181 std::vector<double> Bins1D;
182
183}; // vtkHyperTreeGridGeometricLocator
184
185VTK_ABI_NAMESPACE_END
186
187#endif // vtkHyperTreeGridGeometricLocator_h
provides thread-safe access to cells
class that implements accelerated searches through HyperTree Grids (HTGs) using geometric information
void SetHTG(vtkHyperTreeGrid *candHTG) override
Set the vtkHyperTreeGrid to use for locating.
vtkIdType Search(const double point[3], vtkHyperTreeGridNonOrientedGeometryCursor *cursor)
Basic search for cell holding a given point that also return a cursor.
~vtkHyperTreeGridGeometricLocator() override=default
int IntersectWithLine(const double p0[3], const double p1[3], double tol, double &t, double x[3], double pcoords[3], int &subId, vtkIdType &cellId, vtkGenericCell *cell) override
Find first intersection of the line defined by (p0, p1) with the HTG.
void RecurseAllIntersectsWithLine(const double p0[3], const double p1[3], double tol, vtkHyperTreeGridNonOrientedGeometryCursor *cursor, std::vector< double > *ts, vtkPoints *points, vtkIdList *cellIds, vtkGenericCell *cell) const
Recursive part of all line intersections search.
vtkIdType RecurseSingleIntersectWithLine(const double p0[3], const double p1[3], double tol, vtkHyperTreeGridNonOrientedGeometryCursor *cursor, vtkGenericCell *cell, double &t, int &subId, double x[3], double pcoords[3]) const
Recursive part of single line intersection search.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int IntersectWithLine(const double p0[3], const double p1[3], double tol, vtkPoints *points, vtkIdList *cellIds, vtkGenericCell *cell) override
Find all intersections of the line defined by (p0, p1) with the HTG.
vtkIdType FindCell(const double point[3], double tol, vtkGenericCell *cell, int &subId, double pcoords[3], double *weights) override
Find the cell where a given point lies.
static vtkHyperTreeGridGeometricLocator * New()
vtkIdType Search(const double point[3]) override
Basic search for cell holding a given point.
vtkIdType RecursiveSearch(vtkHyperTreeGridNonOrientedGeometryCursor *cursor, const double pt[3])
The recursive part of the point search.
abstract base class for objects that implement accelerated searches through HyperTree Grids (HTGs)
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
list of point or cell ids
Definition vtkIdList.h:133
a simple class to control print indentation
Definition vtkIndent.h:108
represent and manipulate 3D points
Definition vtkPoints.h:139
int vtkIdType
Definition vtkType.h:332