Salome HOME
updated copyright message
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Offset.cpp
1 // Copyright (C) 2019-2023  CEA, EDF
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                                        const GeomAlgoAPI_OffsetJoint theJoint)
69 {
70   // 1. Make wire from edge, if need
71   TopoDS_Wire aWire;
72   TopoDS_Shape anEdgeOrWire = theEdgeOrWire->impl<TopoDS_Shape>();
73   if (anEdgeOrWire.ShapeType() == TopAbs_WIRE) {
74     aWire = TopoDS::Wire(anEdgeOrWire);
75   } else {
76     if (anEdgeOrWire.ShapeType() == TopAbs_EDGE) {
77       BRepBuilderAPI_MakeWire aWireBuilder;
78       aWireBuilder.Add(TopoDS::Edge(anEdgeOrWire));
79       if (aWireBuilder.IsDone()) {
80         aWire = aWireBuilder.Wire();
81       }
82     }
83   }
84   if (aWire.IsNull())
85     return;
86
87   // 2. Make invalid face to pass it in Offset algorithm
88   BRepBuilderAPI_MakeFace aFaceBuilder (thePlane->impl<gp_Pln>(), aWire);
89   const TopoDS_Face& aFace = aFaceBuilder.Face();
90
91   // 3. Make Offset
92   BRepOffsetAPI_MakeOffset* aParal = new BRepOffsetAPI_MakeOffset;
93   setImpl(aParal);
94   setBuilderType(OCCT_BRepBuilderAPI_MakeShape);
95
96   // Joint type
97   GeomAbs_JoinType aJoin = GeomAbs_Arc; // default mode, corresponding to KeepDistance
98   if (theJoint == GeomAlgoAPI_OffsetJoint::Lines)
99     aJoin = GeomAbs_Intersection;
100   // for GeomAlgoAPI_OffsetJoint::Arcs do the same as for KeepDistance
101
102   Standard_Boolean isOpenResult = !aWire.Closed();
103   aParal->Init(aFace, aJoin, isOpenResult);
104   aParal->Perform(theOffsetValue, 0.);
105   if (aParal->IsDone()) {
106     TopoDS_Shape anOffset = aParal->Shape();
107     GeomShapePtr aResult(new GeomAPI_Shape());
108     aResult->setImpl(new TopoDS_Shape(anOffset));
109     setShape(aResult);
110     setDone(true);
111   }
112 }