Salome HOME
176c569ba2614e788cf19e452d90b3af99fcb109
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Offset.cpp
1 // Copyright (C) 2019-2021  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 "GeomAlgoAPI_Offset.h"
21
22 #include <GeomAPI_Pln.h>
23
24 #include <BRepOffsetAPI_MakeOffsetShape.hxx>
25 #include <BRepOffsetAPI_MakeOffset.hxx>
26
27 #include <BRepBuilderAPI_MakeWire.hxx>
28 #include <BRepBuilderAPI_MakeFace.hxx>
29
30 #include <TopoDS.hxx>
31 #include <TopoDS_Wire.hxx>
32
33 GeomAlgoAPI_Offset::GeomAlgoAPI_Offset(const GeomShapePtr& theShape,
34                                        const double theOffsetValue)
35 {
36   build(theShape, theOffsetValue);
37 }
38
39 void GeomAlgoAPI_Offset::build(const GeomShapePtr& theShape, const double theOffsetValue)
40 {
41   BRepOffsetAPI_MakeOffsetShape* anOffsetAlgo = new BRepOffsetAPI_MakeOffsetShape;
42   anOffsetAlgo->PerformBySimple(theShape->impl<TopoDS_Shape>(), theOffsetValue);
43   setImpl(anOffsetAlgo);
44   setBuilderType(OCCT_BRepBuilderAPI_MakeShape);
45
46   if (anOffsetAlgo->IsDone()) {
47     const TopoDS_Shape& aResult = anOffsetAlgo->Shape();
48     std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape());
49     aShape->setImpl(new TopoDS_Shape(aResult));
50     setShape(aShape);
51     setDone(true);
52   }
53 }
54
55 void GeomAlgoAPI_Offset::generated(const GeomShapePtr theOldShape,
56                                    ListOfShape& theNewShapes)
57 {
58   try {
59     GeomAlgoAPI_MakeShape::generated(theOldShape, theNewShapes);
60   } catch(...) {
61     // nothing is generated
62   }
63 }
64
65 GeomAlgoAPI_Offset::GeomAlgoAPI_Offset(const GeomPlanePtr& thePlane,
66                                        const GeomShapePtr& theEdgeOrWire,
67                                        const double theOffsetValue)
68 {
69   // 1. Make wire from edge, if need
70   TopoDS_Wire aWire;
71   TopoDS_Shape anEdgeOrWire = theEdgeOrWire->impl<TopoDS_Shape>();
72   if (anEdgeOrWire.ShapeType() == TopAbs_WIRE) {
73     aWire = TopoDS::Wire(anEdgeOrWire);
74   } else {
75     if (anEdgeOrWire.ShapeType() == TopAbs_EDGE) {
76       BRepBuilderAPI_MakeWire aWireBuilder;
77       aWireBuilder.Add(TopoDS::Edge(anEdgeOrWire));
78       if (aWireBuilder.IsDone()) {
79         aWire = aWireBuilder.Wire();
80       }
81     }
82   }
83   if (aWire.IsNull())
84     return;
85
86   // 2. Make invalid face to pass it in Offset algorithm
87   BRepBuilderAPI_MakeFace aFaceBuilder (thePlane->impl<gp_Pln>(), aWire);
88   const TopoDS_Face& aFace = aFaceBuilder.Face();
89
90   // 3. Make Offset
91   BRepOffsetAPI_MakeOffset* aParal = new BRepOffsetAPI_MakeOffset;
92   setImpl(aParal);
93   setBuilderType(OCCT_BRepBuilderAPI_MakeShape);
94
95   Standard_Boolean isOpenResult = !aWire.Closed();
96   aParal->Init(aFace, GeomAbs_Arc, isOpenResult);
97   aParal->Perform(theOffsetValue, 0.);
98   if (aParal->IsDone()) {
99     TopoDS_Shape anOffset = aParal->Shape();
100     GeomShapePtr aResult(new GeomAPI_Shape());
101     aResult->setImpl(new TopoDS_Shape(anOffset));
102     setShape(aResult);
103     setDone(true);
104   }
105 }