Salome HOME
a1c012c82b27a0a4d9be0688843cb783dac3e002
[modules/shaper.git] / src / FiltersPlugin / FiltersPlugin_VerticalFace.cpp
1 // Copyright (C) 2014-2022  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 #include "FiltersPlugin_VerticalFace.h"
21
22 #include <GeomAPI_Face.h>
23 #include <GeomAPI_Pln.h>
24 #include <GeomAPI_Solid.h>
25 #include <GeomAPI_Shell.h>
26 #include <GeomAPI_Cylinder.h>
27
28 #include <cmath>
29
30 bool FiltersPlugin_VerticalFace::isSupported(GeomAPI_Shape::ShapeType theType) const
31 {
32   return theType == GeomAPI_Shape::FACE;
33 }
34
35 bool FiltersPlugin_VerticalFace::isOk(const GeomShapePtr& theShape, const ResultPtr&,
36                                       const ModelAPI_FiltersArgs& /*theArgs*/) const
37 {
38   static const double THE_TOLERANCE = 1.e-7;
39
40   bool isVertical = false;
41   if (!theShape->isFace())
42     return isVertical;
43
44   GeomFacePtr aFace(new GeomAPI_Face(theShape));
45
46   GeomPlanePtr aPlane = aFace->getPlane();
47   if (aPlane) {
48     GeomDirPtr aDir = aPlane->direction();
49     isVertical = fabs(aDir->z()) <= THE_TOLERANCE;
50   }
51   else {
52     GeomCylinderPtr aCylinder = aFace->getCylinder();
53     if (aCylinder) {
54       GeomDirPtr aDir = aCylinder->axis();
55       isVertical = fabs(fabs(aDir->z()) - 1.0) <= THE_TOLERANCE;
56     }
57   }
58   return isVertical;
59 }