VTK  9.4.20241226
vtkBoundingBox.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
48#ifndef vtkBoundingBox_h
49#define vtkBoundingBox_h
50#include "vtkCommonDataModelModule.h" // For export macro
51#include "vtkSystemIncludes.h"
52#include <atomic> // For threaded bounding box computation
53
54VTK_ABI_NAMESPACE_BEGIN
55class vtkPoints;
56
57class VTKCOMMONDATAMODEL_EXPORT vtkBoundingBox
58{
59public:
61
69 vtkBoundingBox(const double bounds[6]);
73 vtkBoundingBox(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax);
77 vtkBoundingBox(double center[3], double delta);
79
83 vtkBoundingBox(const vtkBoundingBox& bbox);
84
88 vtkBoundingBox& operator=(const vtkBoundingBox& bbox);
89
91
94 bool operator==(const vtkBoundingBox& bbox) const;
95 bool operator!=(const vtkBoundingBox& bbox) const;
97
99
103 void SetBounds(const double bounds[6]);
104 void SetBounds(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax);
106
108
115 static void ComputeBounds(vtkPoints* pts, double bounds[6]);
116 static void ComputeBounds(vtkPoints* pts, const unsigned char* ptUses, double bounds[6]);
117 static void ComputeBounds(
118 vtkPoints* pts, const std::atomic<unsigned char>* ptUses, double bounds[6]);
119 static void ComputeBounds(
120 vtkPoints* pts, const long long* ptIds, long long numPointIds, double bounds[6]);
121 static void ComputeBounds(vtkPoints* pts, const long* ptIds, long numPointIds, double bounds[6]);
122 static void ComputeBounds(vtkPoints* pts, const int* ptIds, int numPointIds, double bounds[6]);
124 {
125 double bds[6];
127 this->MinPnt[0] = bds[0];
128 this->MinPnt[1] = bds[2];
129 this->MinPnt[2] = bds[4];
130 this->MaxPnt[0] = bds[1];
131 this->MaxPnt[1] = bds[3];
132 this->MaxPnt[2] = bds[5];
133 }
134 void ComputeBounds(vtkPoints* pts, unsigned char* ptUses)
135 {
136 double bds[6];
137 vtkBoundingBox::ComputeBounds(pts, ptUses, bds);
138 this->MinPnt[0] = bds[0];
139 this->MinPnt[1] = bds[2];
140 this->MinPnt[2] = bds[4];
141 this->MaxPnt[0] = bds[1];
142 this->MaxPnt[1] = bds[3];
143 this->MaxPnt[2] = bds[5];
144 }
146
148
153 vtkPoints* points, double u[3], double v[3], double w[3], double outputBounds[6]);
155
157
161 void SetMinPoint(double x, double y, double z);
162 void SetMinPoint(double p[3]);
164
166
170 void SetMaxPoint(double x, double y, double z);
171 void SetMaxPoint(double p[3]);
173
175
179 int IsValid() const;
180 static int IsValid(const double bounds[6]);
182
184
188 void AddPoint(double p[3]);
189 void AddPoint(double px, double py, double pz);
191
196 void AddBox(const vtkBoundingBox& bbox);
197
202 void AddBounds(const double bounds[6]);
203
207 bool IsSubsetOf(const vtkBoundingBox& bbox) const;
208
214 int IntersectBox(const vtkBoundingBox& bbox);
215
219 int Intersects(const vtkBoundingBox& bbox) const;
220
226 bool IntersectPlane(double origin[3], double normal[3]);
227
232 bool IntersectsSphere(double center[3], double squaredRadius) const;
233
238 bool IntersectsLine(const double p1[3], const double p2[3]) const;
239
244
249 int Contains(const vtkBoundingBox& bbox) const;
250
267 static bool ContainsLine(const double x[3], const double s[3], const double lineEnd[3], double& t,
268 double xInt[3], int& plane);
269
271
274 void GetBounds(double bounds[6]) const;
275 void GetBounds(
276 double& xMin, double& xMax, double& yMin, double& yMax, double& zMin, double& zMax) const;
278
282 double GetBound(int i) const;
283
285
288 const double* GetMinPoint() const VTK_SIZEHINT(3);
289 void GetMinPoint(double& x, double& y, double& z) const;
290 void GetMinPoint(double x[3]) const;
292
294
297 const double* GetMaxPoint() const VTK_SIZEHINT(3);
298 void GetMaxPoint(double& x, double& y, double& z) const;
299 void GetMaxPoint(double x[3]) const;
301
306 void GetCorner(int corner, double p[3]) const;
307
309
312 vtkTypeBool ContainsPoint(const double p[3]) const;
313 vtkTypeBool ContainsPoint(double px, double py, double pz) const;
314 template <class PointT>
315 bool ContainsPoint(const PointT& p) const;
317
321 void GetCenter(double center[3]) const;
322
326 void GetLengths(double lengths[3]) const;
327
331 double GetLength(int i) const;
332
336 double GetMaxLength() const;
337
339
343 double GetDiagonalLength2() const;
344 double GetDiagonalLength() const;
346
348
359 void Inflate(double delta);
360 void Inflate(double deltaX, double deltaY, double deltaZ);
361 void Inflate();
362 void InflateSlice(double delta);
364
366
372 void Scale(double s[3]);
373 void Scale(double sx, double sy, double sz);
375
377
382 void ScaleAboutCenter(double s);
383 void ScaleAboutCenter(double s[3]);
384 void ScaleAboutCenter(double sx, double sy, double sz);
386
397 vtkIdType ComputeDivisions(vtkIdType totalBins, double bounds[6], int divs[3]) const;
398
403 static void ClampDivisions(vtkIdType targetBins, int divs[3]);
404
408 void Reset();
409
414 void ClampPoint(double point[3]);
415
416protected:
417 double MinPnt[3], MaxPnt[3];
418};
419
420inline void vtkBoundingBox::Reset()
421{
422 this->MinPnt[0] = this->MinPnt[1] = this->MinPnt[2] = VTK_DOUBLE_MAX;
423 this->MaxPnt[0] = this->MaxPnt[1] = this->MaxPnt[2] = VTK_DOUBLE_MIN;
424}
425
427 double& xMin, double& xMax, double& yMin, double& yMax, double& zMin, double& zMax) const
428{
429 xMin = this->MinPnt[0];
430 xMax = this->MaxPnt[0];
431 yMin = this->MinPnt[1];
432 yMax = this->MaxPnt[1];
433 zMin = this->MinPnt[2];
434 zMax = this->MaxPnt[2];
435}
436
437inline double vtkBoundingBox::GetBound(int i) const
438{
439 // If i is odd then when are returning a part of the max bounds
440 // else part of the min bounds is requested. The exact component
441 // needed is i /2 (or i right shifted by 1
442 return ((i & 0x1) ? this->MaxPnt[i >> 1] : this->MinPnt[i >> 1]);
443}
444
445inline const double* vtkBoundingBox::GetMinPoint() const
446{
447 return this->MinPnt;
448}
449
450inline void vtkBoundingBox::GetMinPoint(double x[3]) const
451{
452 x[0] = this->MinPnt[0];
453 x[1] = this->MinPnt[1];
454 x[2] = this->MinPnt[2];
455}
456
457inline const double* vtkBoundingBox::GetMaxPoint() const
458{
459 return this->MaxPnt;
460}
461
462inline void vtkBoundingBox::GetMaxPoint(double x[3]) const
463{
464 x[0] = this->MaxPnt[0];
465 x[1] = this->MaxPnt[1];
466 x[2] = this->MaxPnt[2];
467}
468
469inline int vtkBoundingBox::IsValid() const
470{
471 return ((this->MinPnt[0] <= this->MaxPnt[0]) && (this->MinPnt[1] <= this->MaxPnt[1]) &&
472 (this->MinPnt[2] <= this->MaxPnt[2]));
473}
474
475inline int vtkBoundingBox::IsValid(const double bounds[6])
476{
477 return (bounds[0] <= bounds[1] && bounds[2] <= bounds[3] && bounds[4] <= bounds[5]);
478}
479
480inline double vtkBoundingBox::GetLength(int i) const
481{
482 return this->MaxPnt[i] - this->MinPnt[i];
483}
484
485inline void vtkBoundingBox::GetLengths(double lengths[3]) const
486{
487 lengths[0] = this->GetLength(0);
488 lengths[1] = this->GetLength(1);
489 lengths[2] = this->GetLength(2);
490}
491
492inline void vtkBoundingBox::GetCenter(double center[3]) const
493{
494 center[0] = 0.5 * (this->MaxPnt[0] + this->MinPnt[0]);
495 center[1] = 0.5 * (this->MaxPnt[1] + this->MinPnt[1]);
496 center[2] = 0.5 * (this->MaxPnt[2] + this->MinPnt[2]);
497}
498
499inline bool vtkBoundingBox::IsSubsetOf(const vtkBoundingBox& bbox) const
500{
501 const double* bboxMaxPnt = bbox.GetMaxPoint();
502 const double* bboxMinPnt = bbox.GetMinPoint();
503 return this->MaxPnt[0] < bboxMaxPnt[0] && this->MinPnt[0] > bboxMinPnt[0] &&
504 this->MaxPnt[1] < bboxMaxPnt[1] && this->MinPnt[1] > bboxMinPnt[1] &&
505 this->MaxPnt[2] < bboxMaxPnt[2] && this->MinPnt[2] > bboxMinPnt[2];
506}
507
508inline void vtkBoundingBox::SetBounds(const double bounds[6])
509{
510 this->SetBounds(bounds[0], bounds[1], bounds[2], bounds[3], bounds[4], bounds[5]);
511}
512
513inline void vtkBoundingBox::GetBounds(double bounds[6]) const
514{
515 this->GetBounds(bounds[0], bounds[1], bounds[2], bounds[3], bounds[4], bounds[5]);
516}
517
519{
520 this->Reset();
521}
522
523inline vtkBoundingBox::vtkBoundingBox(const double bounds[6])
524{
525 this->Reset();
526 this->SetBounds(bounds);
527}
528
530 double xMin, double xMax, double yMin, double yMax, double zMin, double zMax)
531{
532 this->Reset();
533 this->SetBounds(xMin, xMax, yMin, yMax, zMin, zMax);
534}
535
537{
538 this->MinPnt[0] = bbox.MinPnt[0];
539 this->MinPnt[1] = bbox.MinPnt[1];
540 this->MinPnt[2] = bbox.MinPnt[2];
541
542 this->MaxPnt[0] = bbox.MaxPnt[0];
543 this->MaxPnt[1] = bbox.MaxPnt[1];
544 this->MaxPnt[2] = bbox.MaxPnt[2];
545}
546
547inline vtkBoundingBox::vtkBoundingBox(double center[3], double delta)
548{
549 this->Reset();
550 this->AddPoint(center);
551 this->Inflate(delta);
552}
553
555{
556 this->MinPnt[0] = bbox.MinPnt[0];
557 this->MinPnt[1] = bbox.MinPnt[1];
558 this->MinPnt[2] = bbox.MinPnt[2];
559
560 this->MaxPnt[0] = bbox.MaxPnt[0];
561 this->MaxPnt[1] = bbox.MaxPnt[1];
562 this->MaxPnt[2] = bbox.MaxPnt[2];
563 return *this;
564}
565
566inline bool vtkBoundingBox::operator==(const vtkBoundingBox& bbox) const
567{
568 return ((this->MinPnt[0] == bbox.MinPnt[0]) && (this->MinPnt[1] == bbox.MinPnt[1]) &&
569 (this->MinPnt[2] == bbox.MinPnt[2]) && (this->MaxPnt[0] == bbox.MaxPnt[0]) &&
570 (this->MaxPnt[1] == bbox.MaxPnt[1]) && (this->MaxPnt[2] == bbox.MaxPnt[2]));
571}
572
573inline bool vtkBoundingBox::operator!=(const vtkBoundingBox& bbox) const
574{
575 return !((*this) == bbox);
576}
577
578inline void vtkBoundingBox::SetMinPoint(double p[3])
579{
580 this->SetMinPoint(p[0], p[1], p[2]);
581}
582
583inline void vtkBoundingBox::SetMaxPoint(double p[3])
584{
585 this->SetMaxPoint(p[0], p[1], p[2]);
586}
587
588inline void vtkBoundingBox::GetMinPoint(double& x, double& y, double& z) const
589{
590 x = this->MinPnt[0];
591 y = this->MinPnt[1];
592 z = this->MinPnt[2];
593}
594
595inline void vtkBoundingBox::GetMaxPoint(double& x, double& y, double& z) const
596{
597 x = this->MaxPnt[0];
598 y = this->MaxPnt[1];
599 z = this->MaxPnt[2];
600}
601
602inline vtkTypeBool vtkBoundingBox::ContainsPoint(double px, double py, double pz) const
603{
604 if ((px < this->MinPnt[0]) || (px > this->MaxPnt[0]))
605 {
606 return 0;
607 }
608 if ((py < this->MinPnt[1]) || (py > this->MaxPnt[1]))
609 {
610 return 0;
611 }
612 if ((pz < this->MinPnt[2]) || (pz > this->MaxPnt[2]))
613 {
614 return 0;
615 }
616 return 1;
617}
618
619inline vtkTypeBool vtkBoundingBox::ContainsPoint(const double p[3]) const
620{
621 return this->ContainsPoint(p[0], p[1], p[2]);
622}
623
624template <class PointT>
625inline bool vtkBoundingBox::ContainsPoint(const PointT& p) const
626{
627 return this->ContainsPoint(p[0], p[1], p[2]);
628}
629
630inline void vtkBoundingBox::GetCorner(int corner, double p[3]) const
631{
632 if ((corner < 0) || (corner > 7))
633 {
634 p[0] = VTK_DOUBLE_MAX;
635 p[1] = VTK_DOUBLE_MAX;
636 p[2] = VTK_DOUBLE_MAX;
637 return; // out of bounds
638 }
639
640 int ix = (corner & 1) ? 1 : 0; // 0,1,0,1,0,1,0,1
641 int iy = ((corner >> 1) & 1) ? 1 : 0; // 0,0,1,1,0,0,1,1
642 int iz = (corner >> 2) ? 1 : 0; // 0,0,0,0,1,1,1,1
643
644 const double* pts[2] = { this->MinPnt, this->MaxPnt };
645 p[0] = pts[ix][0];
646 p[1] = pts[iy][1];
647 p[2] = pts[iz][2];
648}
649
650VTK_ABI_NAMESPACE_END
651#endif
652// VTK-HeaderTest-Exclude: vtkBoundingBox.h
Fast, simple class for representing and operating on 3D bounds.
static bool ContainsLine(const double x[3], const double s[3], const double lineEnd[3], double &t, double xInt[3], int &plane)
A specialized, performant method to compute the containment of a finite line emanating from the cente...
static void ComputeBounds(vtkPoints *pts, const long long *ptIds, long long numPointIds, double bounds[6])
Compute the bounding box from an array of vtkPoints.
void AddBounds(const double bounds[6])
Adjust the bounding box so it contains the specified bounds (defined by the VTK representation (xmin,...
int IntersectBox(const vtkBoundingBox &bbox)
Intersect this box with bbox.
const double * GetMinPoint() const
Get the minimum point of the bounding box.
void SetBounds(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax)
Set the bounds explicitly of the box (using the VTK convention for representing a bounding box).
void AddBox(const vtkBoundingBox &bbox)
Change the bounding box to be the union of itself and the specified bbox.
int Contains(const vtkBoundingBox &bbox) const
Returns 1 if the min and max points of bbox are contained within the bounds of the specified box,...
int IsValid() const
Returns 1 if the bounds have been set and 0 if the box is in its initialized state which is an invert...
int Intersects(const vtkBoundingBox &bbox) const
Returns 1 if the boxes intersect else returns 0.
bool operator!=(const vtkBoundingBox &bbox) const
Equality operator.
void AddPoint(double px, double py, double pz)
Change bounding box so it includes the point p.
int ComputeInnerDimension() const
Returns the inner dimension of the bounding box.
void GetCorner(int corner, double p[3]) const
Get the ith corner of the bounding box.
void ComputeBounds(vtkPoints *pts)
Compute the bounding box from an array of vtkPoints.
bool IsSubsetOf(const vtkBoundingBox &bbox) const
Returns true if this instance is entirely contained by bbox.
static void ComputeBounds(vtkPoints *pts, double bounds[6])
Compute the bounding box from an array of vtkPoints.
bool IntersectsSphere(double center[3], double squaredRadius) const
Intersect this box with a sphere.
void SetMaxPoint(double x, double y, double z)
Set the maximum point of the bounding box - if the max point is less than the min point then the min ...
bool IntersectPlane(double origin[3], double normal[3])
Intersect this box with the half space defined by plane.
bool IntersectsLine(const double p1[3], const double p2[3]) const
Returns true if any part of segment [p1,p2] lies inside the bounding box, as well as on its boundarie...
static void ComputeBounds(vtkPoints *pts, const long *ptIds, long numPointIds, double bounds[6])
Compute the bounding box from an array of vtkPoints.
static void ComputeLocalBounds(vtkPoints *points, double u[3], double v[3], double w[3], double outputBounds[6])
Compute local bounds.
void GetCenter(double center[3]) const
Get the center of the bounding box.
void AddPoint(double p[3])
Change bounding box so it includes the point p.
double GetLength(int i) const
Return the length of the bounding box in the ith direction.
bool operator==(const vtkBoundingBox &bbox) const
Equality operator.
vtkTypeBool ContainsPoint(const double p[3]) const
Returns 1 if the point is contained in the box else 0.
vtkBoundingBox()
Construct a bounding box with the min point set to VTK_DOUBLE_MAX and the max point set to VTK_DOUBLE...
static void ComputeBounds(vtkPoints *pts, const int *ptIds, int numPointIds, double bounds[6])
Compute the bounding box from an array of vtkPoints.
void GetLengths(double lengths[3]) const
Get the length of each side of the box.
void ComputeBounds(vtkPoints *pts, unsigned char *ptUses)
Compute the bounding box from an array of vtkPoints.
static void ComputeBounds(vtkPoints *pts, const unsigned char *ptUses, double bounds[6])
Compute the bounding box from an array of vtkPoints.
void SetBounds(const double bounds[6])
Set the bounds explicitly of the box (using the VTK convention for representing a bounding box).
const double * GetMaxPoint() const
Get the maximum point of the bounding box.
double GetBound(int i) const
Return the ith bounds of the box (defined by VTK style).
static void ComputeBounds(vtkPoints *pts, const std::atomic< unsigned char > *ptUses, double bounds[6])
Compute the bounding box from an array of vtkPoints.
void GetBounds(double bounds[6]) const
Get the bounds of the box (defined by VTK style).
void SetMinPoint(double x, double y, double z)
Set the minimum point of the bounding box - if the min point is greater than the max point then the m...
vtkBoundingBox & operator=(const vtkBoundingBox &bbox)
Assignment Operator.
represent and manipulate 3D points
Definition vtkPoints.h:139
int vtkTypeBool
Definition vtkABI.h:64
bool VTKCOMMONCORE_EXPORT operator==(const std::string &a, const vtkStringToken &b)
bool VTKCOMMONCORE_EXPORT operator!=(const std::string &a, const vtkStringToken &b)
int vtkIdType
Definition vtkType.h:315
#define VTK_DOUBLE_MIN
Definition vtkType.h:153
#define VTK_DOUBLE_MAX
Definition vtkType.h:154
#define VTK_SIZEHINT(...)