1 // Copyright (C) 2018-20xx CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include <GeomAPI_Box.h>
22 #include <GeomAPI_Ax3.h>
24 #include <Precision.hxx>
28 std::shared_ptr<GeomAPI_Ax3> myCoordSystem;
33 Box(const std::shared_ptr<GeomAPI_Ax3>& theCoordSystem,
34 const double theWidth,
35 const double theDepth,
36 const double theHeight)
37 : myCoordSystem(theCoordSystem),
44 #define MY_BOX implPtr<Box>()
46 //=================================================================================================
47 GeomAPI_Box::GeomAPI_Box()
48 : GeomAPI_Interface(new Box(std::shared_ptr<GeomAPI_Ax3>(new GeomAPI_Ax3), 0., 0., 0.))
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))
61 //=================================================================================================
62 std::shared_ptr<GeomAPI_Ax3> GeomAPI_Box::axes() const
64 return MY_BOX->myCoordSystem;
67 //=================================================================================================
68 std::shared_ptr<GeomAPI_Pnt> GeomAPI_Box::corner() const
70 return axes()->origin();
73 //=================================================================================================
74 double GeomAPI_Box::width() const
76 return MY_BOX->myWidth;
79 //=================================================================================================
80 double GeomAPI_Box::depth() const
82 return MY_BOX->myDepth;
85 //=================================================================================================
86 double GeomAPI_Box::height() const
88 return MY_BOX->myHeight;
91 //=================================================================================================
92 bool GeomAPI_Box::isAxesAligned() const
94 return Abs(MY_BOX->myCoordSystem->dirX()->x() - 1.0) < Precision::Angular() &&
95 Abs(MY_BOX->myCoordSystem->normal()->z() - 1.0) < Precision::Angular();