1 // Copyright (C) 2014-2024 CEA, EDF
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 email : webmaster.salome@opencascade.com
20 #include <GeomAlgoAPI_ConeSegment.h>
25 #include <TopoDS_Edge.hxx>
27 #include <BRepPrimAPI_MakeRevol.hxx>
28 #include <BRepBuilderAPI_MakeEdge.hxx>
29 #include <BRepBuilderAPI_MakeWire.hxx>
30 #include <BRepBuilderAPI_MakeFace.hxx>
31 #include <Precision.hxx>
35 //=================================================================================================
37 GeomAlgoAPI_ConeSegment::GeomAlgoAPI_ConeSegment(const double theRMin1,
38 const double theRMax1,
39 const double theRMin2,
40 const double theRMax2,
42 const double theStartPhi,
43 const double theDeltaPhi)
50 myStartPhi = theStartPhi;
51 myDeltaPhi = theDeltaPhi;
54 //=================================================================================================
55 bool GeomAlgoAPI_ConeSegment::check()
59 myError = "Cone Segment builder :: rmin1 is negative.";
64 myError = "Cone Segment builder :: rmin2 is negative.";
67 if ((myRMax1-myRMin1) < Precision::Confusion())
69 myError = "Cone Segment builder :: rmin1 is larger than rmax1.";
72 if ((myRMax2-myRMin2) < Precision::Confusion())
74 myError = "Cone Segment builder :: rmin2 is larger than rmax2.";
77 if (myZ < Precision::Confusion())
79 myError = "Cone Segment builder :: z is negative or null.";
82 if (myDeltaPhi < Precision::Angular() * 180./M_PI)
84 myError = "Cone Segment builder :: deltaphi is negative or null.";
89 myError = "Cone Segment builder :: deltaphi is larger than 360 degree.";
95 //=================================================================================================
96 void GeomAlgoAPI_ConeSegment::build()
98 myCreatedFaces.clear();
100 const double aStartPhiRad = myStartPhi * M_PI/180.;
101 BRepBuilderAPI_MakeWire aWireBuilder;
103 // Define the section from the 4 vertices
104 gp_Pnt aPointOuterBase(myRMax1 * cos(aStartPhiRad), myRMax1 * sin(aStartPhiRad), -myZ/2.);
105 gp_Pnt aPointInnerBase(myRMin1 * cos(aStartPhiRad), myRMin1 * sin(aStartPhiRad), -myZ/2.);
106 gp_Pnt aPointOuterTop(myRMax2 * cos(aStartPhiRad), myRMax2 * sin(aStartPhiRad), myZ/2.);
107 gp_Pnt aPointInnerTop(myRMin2 * cos(aStartPhiRad), myRMin2 * sin(aStartPhiRad), myZ/2.);
109 if ((myRMax1 - myRMin1) >= Precision::Confusion()){
110 BRepBuilderAPI_MakeEdge anEdgeBuilderBase(aPointOuterBase, aPointInnerBase);
111 anEdgeBuilderBase.Build();
112 aWireBuilder.Add(anEdgeBuilderBase.Edge());
115 BRepBuilderAPI_MakeEdge anEdgeBuilderOuter(aPointOuterBase, aPointOuterTop);
116 anEdgeBuilderOuter.Build();
117 aWireBuilder.Add(anEdgeBuilderOuter.Edge());
118 if ((myRMax2 - myRMin2) >= Precision::Confusion()){
119 BRepBuilderAPI_MakeEdge anEdgeBuilderTop(aPointOuterTop, aPointInnerTop);
120 anEdgeBuilderTop.Build();
121 aWireBuilder.Add(anEdgeBuilderTop.Edge());
124 BRepBuilderAPI_MakeEdge anEdgeBuilderInner(aPointInnerTop, aPointInnerBase);
125 anEdgeBuilderInner.Build();
126 aWireBuilder.Add(anEdgeBuilderInner.Edge());
128 aWireBuilder.Build();
129 BRepBuilderAPI_MakeFace aFaceBuilder(aWireBuilder.Wire());
130 aFaceBuilder.Build();
132 if (!aFaceBuilder.IsDone()){
133 myError = "Cone Segment builder :: section is not valid";
137 // Perform a revolution based on the section to build the solid
138 gp_Dir aZDir(0., 0., 1.);
139 gp_Pnt anOrigin(0., 0., 0.);
140 gp_Ax1 aZAxis(anOrigin, aZDir);
141 BRepPrimAPI_MakeRevol* aRevolBuilder =
142 new BRepPrimAPI_MakeRevol(aFaceBuilder.Face(), aZAxis, myDeltaPhi * M_PI/180., Standard_True);
144 myError = "Cone Segment builder :: section revolution did not succeed";
147 if(!aRevolBuilder->IsDone()) {
148 myError = "Cone Segment builder :: section revolution did not succeed";
152 setImpl(aRevolBuilder);
153 setBuilderType(OCCT_BRepBuilderAPI_MakeShape);
155 std::shared_ptr<GeomAPI_Shape> aResultShape =
156 std::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape());
157 aResultShape->setImpl(new TopoDS_Shape(aRevolBuilder->Shape()));
159 // Test on the shapes
160 if (!(aResultShape).get() || aResultShape->isNull()) {
161 myError = "Cone Segment builder :: resulting shape is null.";
165 setShape(aResultShape);