Salome HOME
Issue 2556: Functionality of inspection “WhatIs”
[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()
48   : GeomAPI_Interface(new Box(std::shared_ptr<GeomAPI_Ax3>(new GeomAPI_Ax3), 0., 0., 0.))
49 {
50 }
51
52 //=================================================================================================
53 GeomAPI_Box::GeomAPI_Box(const std::shared_ptr<GeomAPI_Ax3>& theCorner,
54                          const double theWidth,
55                          const double theDepth,
56                          const double theHeight)
57   : GeomAPI_Interface(new Box(theCorner, theWidth, theDepth, theHeight))
58 {
59 }
60
61 //=================================================================================================
62 std::shared_ptr<GeomAPI_Ax3> GeomAPI_Box::axes() const
63 {
64   return MY_BOX->myCoordSystem;
65 }
66
67 //=================================================================================================
68 std::shared_ptr<GeomAPI_Pnt> GeomAPI_Box::corner() const
69 {
70   return axes()->origin();
71 }
72
73 //=================================================================================================
74 double GeomAPI_Box::width() const
75 {
76   return MY_BOX->myWidth;
77 }
78
79 //=================================================================================================
80 double GeomAPI_Box::depth() const
81 {
82   return MY_BOX->myDepth;
83 }
84
85 //=================================================================================================
86 double GeomAPI_Box::height() const
87 {
88   return MY_BOX->myHeight;
89 }
90
91 //=================================================================================================
92 bool GeomAPI_Box::isAxesAligned() const
93 {
94   return Abs(MY_BOX->myCoordSystem->dirX()->x() - 1.0) < Precision::Angular() &&
95          Abs(MY_BOX->myCoordSystem->normal()->z() - 1.0) < Precision::Angular();
96 }