Salome HOME
Copyright update 2020
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Offset.cpp
1 // Copyright (C) 2019-2020  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 <BRepOffsetAPI_MakeOffsetShape.hxx>
23
24
25 GeomAlgoAPI_Offset::GeomAlgoAPI_Offset(const GeomShapePtr& theShape,
26                                        const double theOffsetValue)
27 {
28   build(theShape, theOffsetValue);
29 }
30
31 void GeomAlgoAPI_Offset::build(const GeomShapePtr& theShape, const double theOffsetValue)
32 {
33   BRepOffsetAPI_MakeOffsetShape* anOffsetAlgo = new BRepOffsetAPI_MakeOffsetShape;
34   anOffsetAlgo->PerformBySimple(theShape->impl<TopoDS_Shape>(), theOffsetValue);
35   setImpl(anOffsetAlgo);
36   setBuilderType(OCCT_BRepBuilderAPI_MakeShape);
37
38   if (anOffsetAlgo->IsDone()) {
39     const TopoDS_Shape& aResult = anOffsetAlgo->Shape();
40     std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape());
41     aShape->setImpl(new TopoDS_Shape(aResult));
42     setShape(aShape);
43     setDone(true);
44   }
45 }
46
47 void GeomAlgoAPI_Offset::generated(const GeomShapePtr theOldShape,
48                                    ListOfShape& theNewShapes)
49 {
50   try {
51     GeomAlgoAPI_MakeShape::generated(theOldShape, theNewShapes);
52   } catch(...) {
53     // nothing is generated
54   }
55 }