VTK  9.2.6
vtkOBBTree.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOBBTree.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
78#ifndef vtkOBBTree_h
79#define vtkOBBTree_h
80
82#include "vtkFiltersGeneralModule.h" // For export macro
83
84class vtkMatrix4x4;
85
86// Special class defines node for the OBB tree
87class VTKFILTERSGENERAL_EXPORT vtkOBBNode
88{ //;prevent man page generation
89public:
92
93 double Corner[3]; // center point of this node
94 double Axes[3][3]; // the axes defining the OBB - ordered from long->short
95 vtkOBBNode* Parent; // parent node; nullptr if root
96 vtkOBBNode** Kids; // two children of this node; nullptr if leaf
97 vtkIdList* Cells; // list of cells in node
98 void DebugPrintTree(int level, double* leaf_vol, int* minCells, int* maxCells);
99
100private:
101 vtkOBBNode(const vtkOBBNode& other) = delete;
102 vtkOBBNode& operator=(const vtkOBBNode& rhs) = delete;
103};
104
105class VTKFILTERSGENERAL_EXPORT vtkOBBTree : public vtkAbstractCellLocator
106{
107public:
109
113 void PrintSelf(ostream& os, vtkIndent indent) override;
115
120 static vtkOBBTree* New();
121
122 // Re-use any superclass signatures that we don't override.
124
131 int IntersectWithLine(const double a0[3], const double a1[3], double tol, double& t, double x[3],
132 double pcoords[3], int& subId, vtkIdType& cellId, vtkGenericCell* cell) override;
133
146 const double a0[3], const double a1[3], vtkPoints* points, vtkIdList* cellIds) override;
147
153 static void ComputeOBB(
154 vtkPoints* pts, double corner[3], double max[3], double mid[3], double min[3], double size[3]);
155
162 void ComputeOBB(vtkDataSet* input, double corner[3], double max[3], double mid[3], double min[3],
163 double size[3]);
164
170 int InsideOrOutside(const double point[3]);
171
176 int DisjointOBBNodes(vtkOBBNode* nodeA, vtkOBBNode* nodeB, vtkMatrix4x4* XformBtoA);
177
181 int LineIntersectsNode(vtkOBBNode* pA, const double b0[3], const double b1[3]);
182
187 vtkOBBNode* pA, double p0[3], double p1[3], double p2[3], vtkMatrix4x4* XformBtoA);
188
194 int (*function)(vtkOBBNode* nodeA, vtkOBBNode* nodeB, vtkMatrix4x4* Xform, void* arg),
195 void* data_arg);
196
198
201 void FreeSearchStructure() override;
202 void BuildLocator() override;
203 void ForceBuildLocator() override;
205
215 void GenerateRepresentation(int level, vtkPolyData* pd) override;
216
217protected:
219 ~vtkOBBTree() override;
220
221 void BuildLocatorInternal() override;
222
223 // Compute an OBB from the list of cells given. This used to be
224 // public but should not have been. A public call has been added
225 // so that the functionality can be accessed.
226 void ComputeOBB(vtkIdList* cells, double corner[3], double max[3], double mid[3], double min[3],
227 double size[3]);
228
230 void BuildTree(vtkIdList* cells, vtkOBBNode* parent, int level);
234
235 void DeleteTree(vtkOBBNode* OBBptr);
237 vtkOBBNode* OBBptr, int level, int repLevel, vtkPoints* pts, vtkCellArray* polys);
238
239private:
240 vtkOBBTree(const vtkOBBTree&) = delete;
241 void operator=(const vtkOBBTree&) = delete;
242};
243
244#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:72
provides thread-safe access to cells
list of point or cell ids
Definition vtkIdList.h:43
a simple class to control print indentation
Definition vtkIndent.h:49
represent and manipulate 4x4 transformation matrices
vtkOBBNode * Parent
Definition vtkOBBTree.h:95
vtkIdList * Cells
Definition vtkOBBTree.h:97
void DebugPrintTree(int level, double *leaf_vol, int *minCells, int *maxCells)
vtkOBBNode ** Kids
Definition vtkOBBTree.h:96
generate oriented bounding box (OBB) tree
Definition vtkOBBTree.h:106
void ComputeOBB(vtkDataSet *input, double corner[3], double max[3], double mid[3], double min[3], double size[3])
Compute an OBB for the input dataset using the cells in the data.
void BuildLocator() override
Satisfy locator's abstract interface, see vtkLocator.
void FreeSearchStructure() override
Satisfy locator's abstract interface, see vtkLocator.
int IntersectWithLine(const double a0[3], const double a1[3], double tol, double &t, double x[3], double pcoords[3], int &subId, vtkIdType &cellId, vtkGenericCell *cell) override
Return the first intersection of the specified line segment with the OBB tree, as well as information...
int DisjointOBBNodes(vtkOBBNode *nodeA, vtkOBBNode *nodeB, vtkMatrix4x4 *XformBtoA)
Returns true if nodeB and nodeA are disjoint after optional transformation of nodeB with matrix Xform...
int InsideOrOutside(const double point[3])
Determine whether a point is inside or outside the data used to build this OBB tree.
void GenerateRepresentation(int level, vtkPolyData *pd) override
Create polygonal representation for OBB tree at specified level.
void GeneratePolygons(vtkOBBNode *OBBptr, int level, int repLevel, vtkPoints *pts, vtkCellArray *polys)
~vtkOBBTree() override
vtkOBBNode * Tree
Definition vtkOBBTree.h:229
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods to print and obtain type-related information.
void BuildLocatorInternal() override
This function is not pure virtual to maintain backwards compatibility.
int LineIntersectsNode(vtkOBBNode *pA, const double b0[3], const double b1[3])
Returns true if line intersects node.
static vtkOBBTree * New()
Construct with automatic computation of divisions, averaging 25 cells per octant.
void ComputeOBB(vtkIdList *cells, double corner[3], double max[3], double mid[3], double min[3], double size[3])
vtkPoints * PointsList
Definition vtkOBBTree.h:231
int IntersectWithLine(const double a0[3], const double a1[3], vtkPoints *points, vtkIdList *cellIds) override
Take the passed line segment and intersect it with the data set.
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.
int * InsertedPoints
Definition vtkOBBTree.h:232
void ForceBuildLocator() override
Satisfy locator's abstract interface, see vtkLocator.
void DeleteTree(vtkOBBNode *OBBptr)
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.
void BuildTree(vtkIdList *cells, vtkOBBNode *parent, int level)
represent and manipulate 3D points
Definition vtkPoints.h:49
concrete dataset represents vertices, lines, polygons, and triangle strips
int vtkIdType
Definition vtkType.h:332
#define max(a, b)