Salome HOME
76189f460e075a8172e510a7ba832eb85bb9c03d
[modules/shaper.git] / src / GeomAPI / GeomAPI_Box.cpp
1 // Copyright (C) 2018-20xx  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <GeomAPI_Box.h>
22 #include <GeomAPI_Ax3.h>
23
24 #include <Precision.hxx>
25
26 struct Box
27 {
28   std::shared_ptr<GeomAPI_Ax3> myCoordSystem;
29   double myWidth;
30   double myDepth;
31   double myHeight;
32
33   Box(const std::shared_ptr<GeomAPI_Ax3>& theCoordSystem,
34       const double theWidth,
35       const double theDepth,
36       const double theHeight)
37     : myCoordSystem(theCoordSystem),
38       myWidth(theWidth),
39       myDepth(theDepth),
40       myHeight(theHeight)
41   {}
42 };
43
44 #define MY_BOX implPtr<Box>()
45
46 //=================================================================================================
47 GeomAPI_Box::GeomAPI_Box(const std::shared_ptr<GeomAPI_Ax3>& theCorner,
48                          const double theWidth,
49                          const double theDepth,
50                          const double theHeight)
51   : GeomAPI_Interface(new Box(theCorner, theWidth, theDepth, theHeight))
52 {
53 }
54
55 //=================================================================================================
56 std::shared_ptr<GeomAPI_Ax3> GeomAPI_Box::axes() const
57 {
58   return MY_BOX->myCoordSystem;
59 }
60
61 //=================================================================================================
62 std::shared_ptr<GeomAPI_Pnt> GeomAPI_Box::corner() const
63 {
64   return axes()->origin();
65 }
66
67 //=================================================================================================
68 double GeomAPI_Box::width() const
69 {
70   return MY_BOX->myWidth;
71 }
72
73 //=================================================================================================
74 double GeomAPI_Box::depth() const
75 {
76   return MY_BOX->myDepth;
77 }
78
79 //=================================================================================================
80 double GeomAPI_Box::height() const
81 {
82   return MY_BOX->myHeight;
83 }
84
85 //=================================================================================================
86 bool GeomAPI_Box::isAxesAligned() const
87 {
88   return Abs(MY_BOX->myCoordSystem->dirX()->x() - 1.0) < Precision::Angular() &&
89          Abs(MY_BOX->myCoordSystem->normal()->z() - 1.0) < Precision::Angular();
90 }