Salome HOME
Copyright update 2022
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Torus.cpp
1 // Copyright (C) 2017-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 // File:        GeomAlgoAPI_Torus.cpp
21 // Created:     20 Mar 2017
22 // Author:      Clarisse Genrault (CEA)
23
24 #include <GeomAlgoAPI_Torus.h>
25
26 #include <gp_Ax2.hxx>
27
28 #include <BRepPrimAPI_MakeTorus.hxx>
29
30 //=================================================================================================
31 GeomAlgoAPI_Torus::GeomAlgoAPI_Torus(std::shared_ptr<GeomAPI_Ax2> theAxis,
32                                      const double theRadius,
33                                      const double theRingRadius)
34 {
35   myAxis = theAxis;
36   myRadius = theRadius;
37   myRingRadius = theRingRadius;
38 }
39
40 //=================================================================================================
41 bool GeomAlgoAPI_Torus::check()
42 {
43   if (!myAxis) {
44     myError = "Torus builder :: axis is not valid.";
45     return false;
46   } else if (myRadius < Precision::Confusion()) {
47     myError = "Torus builder :: radius is negative or null.";
48     return false;
49   } else if (myRingRadius < Precision::Confusion()) {
50     myError = "Torus builder :: ring radius is negative or null.";
51     return false;
52   } else if (myRadius < myRingRadius) {
53     myError = "Torus builder :: ring radius is greater than the radius.";
54     return false;
55   }
56   return true;
57 }
58
59 //=================================================================================================
60 void GeomAlgoAPI_Torus::build()
61 {
62   myCreatedFaces.clear();
63
64   const gp_Ax2& anAxis = myAxis->impl<gp_Ax2>();
65
66   // Construct the torus
67   BRepPrimAPI_MakeTorus *aTorusMaker =
68     new BRepPrimAPI_MakeTorus(anAxis, myRadius, myRingRadius);
69
70   aTorusMaker->Build();
71
72   if (!aTorusMaker->IsDone()) {
73     return;
74   }
75
76   TopoDS_Shape aResult = aTorusMaker->Shape();
77   std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape());
78   aShape->setImpl(new TopoDS_Shape(aResult));
79   setShape(aShape);
80
81   // Test on the shapes
82   if (!aShape.get() || aShape->isNull()) {
83     myError = "Torus builder :: resulting shape is null.";
84     return;
85   }
86
87   setImpl(aTorusMaker);
88
89   setDone(true);
90 }