Salome HOME
Copyright update 2020
[tools/medcoupling.git] / src / INTERP_KERNEL / BoundingBox.hxx
1 // Copyright (C) 2007-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __BOUNDINGBOX_HXX__
21 #define __BOUNDINGBOX_HXX__
22
23 #include "INTERPKERNELDefines.hxx"
24 #include <iostream>
25
26 namespace INTERP_KERNEL
27 {
28
29   /**
30    * \brief Class representing the bounding box of a number of points.
31    *
32    */
33   class INTERPKERNEL_EXPORT BoundingBox 
34   {
35   public:
36
37     /// Enumeration representing the six coordinates that define the bounding box
38     enum BoxCoord { XMIN = 0, YMIN = 1, ZMIN = 2, XMAX = 3, YMAX = 4, ZMAX = 5 };
39         
40     BoundingBox(const double** pts, const unsigned numPts);
41
42     BoundingBox(const BoundingBox& box1, const BoundingBox& box2);
43
44     ~BoundingBox();
45
46     bool isDisjointWith(const BoundingBox& box) const;
47     
48     inline void setCoordinate(const BoxCoord coord, double value);
49
50     inline double getCoordinate(const BoxCoord coord) const;
51
52     void updateWithPoint(const double* pt);
53
54     inline void dumpCoords() const;
55
56     void toCompactData(double data[6]) const;
57
58   private:
59     
60     bool isValid() const;
61
62     /// disallow copying
63     BoundingBox(const BoundingBox& box);
64     
65     /// disallow assignment
66     BoundingBox& operator=(const BoundingBox& box);
67     
68     /// Vector containing the coordinates of the box
69     /// interlaced in the order XMIN, YMIN, ZMIN, XMAX, YMAX, ZMAX
70     double* _coords;
71
72   };
73
74   /**
75    * Sets a coordinate of the box to a given value.
76    * 
77    * @param coord coordinate to set
78    * @param value new value for coordinate
79    *
80    */
81   inline void BoundingBox::setCoordinate(const BoxCoord coord, double value)
82   {
83     _coords[coord] = value;
84   }
85
86   /**
87    * Gets a coordinate of the box
88    * 
89    * @param coord coordinate to get
90    * @return value of coordinate
91    *
92    */
93   inline double BoundingBox::getCoordinate(const BoxCoord coord) const
94   {
95     return _coords[coord];
96   }
97
98   /**
99    * Prints the coordinates of the box to std::cout
100    *
101    */
102   inline void BoundingBox::dumpCoords() const
103   {
104     std::cout << "[xmin, xmax] = [" << _coords[XMIN] << ", " << _coords[XMAX] << "]" << " | ";
105     std::cout << "[ymin, ymax] = [" << _coords[YMIN] << ", " << _coords[YMAX] << "]" << " | ";
106     std::cout << "[zmin, zmax] = [" << _coords[ZMIN] << ", " << _coords[ZMAX] << "]";
107     std::cout << std::endl;
108   }
109
110 }
111
112 #endif