VTK  9.5.2
vtkOBBTree.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
135
136#ifndef vtkOBBTree_h
137#define vtkOBBTree_h
138
140#include "vtkFiltersGeneralModule.h" // For export macro
141
142VTK_ABI_NAMESPACE_BEGIN
143class vtkMatrix4x4;
144
145// Special class defines node for the OBB tree
146class VTKFILTERSGENERAL_EXPORT vtkOBBNode
147{ //;prevent man page generation
148public:
149 vtkOBBNode();
150 ~vtkOBBNode();
151
152 double Corner[3]; // center point of this node
153 double Axes[3][3]; // the axes defining the OBB - ordered from long->short
154 vtkOBBNode* Parent; // parent node; nullptr if root
155 vtkOBBNode** Kids; // two children of this node; nullptr if leaf
156 vtkIdList* Cells; // list of cells in node
157 void DebugPrintTree(int level, double* leaf_vol, int* minCells, int* maxCells);
158
159private:
160 vtkOBBNode(const vtkOBBNode& other) = delete;
161 vtkOBBNode& operator=(const vtkOBBNode& rhs) = delete;
162};
163
164class VTKFILTERSGENERAL_EXPORT vtkOBBTree : public vtkAbstractCellLocator
165{
166public:
168
172 void PrintSelf(ostream& os, vtkIndent indent) override;
174
179 static vtkOBBTree* New();
180
181 // Reuse any superclass signatures that we don't override.
183
190 int IntersectWithLine(const double a0[3], const double a1[3], double tol, double& t, double x[3],
191 double pcoords[3], int& subId, vtkIdType& cellId, vtkGenericCell* cell) override;
192
205 const double a0[3], const double a1[3], vtkPoints* points, vtkIdList* cellIds) override;
206
212 static void ComputeOBB(
213 vtkPoints* pts, double corner[3], double max[3], double mid[3], double min[3], double size[3]);
214
221 void ComputeOBB(vtkDataSet* input, double corner[3], double max[3], double mid[3], double min[3],
222 double size[3]);
223
229 int InsideOrOutside(const double point[3]);
230
235 int DisjointOBBNodes(vtkOBBNode* nodeA, vtkOBBNode* nodeB, vtkMatrix4x4* XformBtoA);
236
240 int LineIntersectsNode(vtkOBBNode* pA, const double b0[3], const double b1[3]);
241
246 vtkOBBNode* pA, double p0[3], double p1[3], double p2[3], vtkMatrix4x4* XformBtoA);
247
253 int (*function)(vtkOBBNode* nodeA, vtkOBBNode* nodeB, vtkMatrix4x4* Xform, void* arg),
254 void* data_arg);
255
257
260 void FreeSearchStructure() override;
261 void BuildLocator() override;
262 void ForceBuildLocator() override;
264
274 void GenerateRepresentation(int level, vtkPolyData* pd) override;
275
276protected:
278 ~vtkOBBTree() override;
279
280 void BuildLocatorInternal() override;
281
282 // Compute an OBB from the list of cells given. This used to be
283 // public but should not have been. A public call has been added
284 // so that the functionality can be accessed.
285 void ComputeOBB(vtkIdList* cells, double corner[3], double max[3], double mid[3], double min[3],
286 double size[3]);
287
288 vtkOBBNode* Tree;
289 void BuildTree(vtkIdList* cells, vtkOBBNode* parent, int level);
293
294 void DeleteTree(vtkOBBNode* OBBptr);
296 vtkOBBNode* OBBptr, int level, int repLevel, vtkPoints* pts, vtkCellArray* polys);
297
298private:
299 vtkOBBTree(const vtkOBBTree&) = delete;
300 void operator=(const vtkOBBTree&) = delete;
301};
302
303VTK_ABI_NAMESPACE_END
304#endif
an abstract base class for locators which find cells
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.
object to represent cell connectivity
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
provides thread-safe access to cells
list of point or cell ids
Definition vtkIdList.h:133
a simple class to control print indentation
Definition vtkIndent.h:108
represent and manipulate 4x4 transformation matrices
generate oriented bounding box (OBB) tree
represent and manipulate 3D points
Definition vtkPoints.h:139
concrete dataset represents vertices, lines, polygons, and triangle strips
int IntersectWithLine(const double p1[3], const double p2[3], double tol, double &t, double x[3], double pcoords[3], int &subId) override
Line-edge intersection.
static vtkBiQuadraticQuadraticHexahedron * New()
void PrintSelf(ostream &os, vtkIndent indent) override
@ Cells
A cell specified by degrees of freedom held in arrays.
int DisjointOBBNodes(vtkOBBNode *nodeA, vtkOBBNode *nodeB, vtkMatrix4x4 *XformBtoA)
Returns true if nodeB and nodeA are disjoint after optional transformation of nodeB with matrix Xform...
vtkOBBNode * Tree
Definition vtkOBBTree.h:288
void BuildTree(vtkIdList *cells, vtkOBBNode *parent, int level)
static void ComputeOBB(vtkPoints *pts, double corner[3], double max[3], double mid[3], double min[3], double size[3])
Compute an OBB from the list of points given.
int IntersectWithOBBTree(vtkOBBTree *OBBTreeB, vtkMatrix4x4 *XformBtoA, int(*function)(vtkOBBNode *nodeA, vtkOBBNode *nodeB, vtkMatrix4x4 *Xform, void *arg), void *data_arg)
For each intersecting leaf node pair, call function.
int TriangleIntersectsNode(vtkOBBNode *pA, double p0[3], double p1[3], double p2[3], vtkMatrix4x4 *XformBtoA)
Returns true if triangle (optionally transformed) intersects node.
void GeneratePolygons(vtkOBBNode *OBBptr, int level, int repLevel, vtkPoints *pts, vtkCellArray *polys)
~vtkOBBTree() override
int OBBCount
Definition vtkOBBTree.h:292
vtkPoints * PointsList
Definition vtkOBBTree.h:290
vtkOBBTree()
void ForceBuildLocator() override
Satisfy locator's abstract interface, see vtkLocator.
void BuildLocator() override
Satisfy locator's abstract interface, see vtkLocator.
void DeleteTree(vtkOBBNode *OBBptr)
int * InsertedPoints
Definition vtkOBBTree.h:291
void FreeSearchStructure() override
Satisfy locator's abstract interface, see vtkLocator.
int LineIntersectsNode(vtkOBBNode *pA, const double b0[3], const double b1[3])
Returns true if line intersects node.
void BuildLocatorInternal() override
void GenerateRepresentation(int level, vtkPolyData *pd) override
Create polygonal representation for OBB tree at specified level.
int InsideOrOutside(const double point[3])
Determine whether a point is inside or outside the data used to build this OBB tree.
int vtkIdType
Definition vtkType.h:332
#define max(a, b)