Salome HOME
Update copyrights
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Copy.cpp
1 // Copyright (C) 2014-2019  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_Copy.h"
21
22
23 #include <BRepBuilderAPI_Copy.hxx>
24
25 //=================================================================================================
26 GeomAlgoAPI_Copy::GeomAlgoAPI_Copy(const std::shared_ptr<GeomAPI_Shape> theShape,
27                                    const bool theCopyGeom,
28                                    const bool theCopyMesh)
29 {
30   build(theShape, theCopyGeom, theCopyMesh);
31 }
32
33
34 //=================================================================================================
35 void GeomAlgoAPI_Copy::build(const std::shared_ptr<GeomAPI_Shape> theShape,
36                              const bool theCopyGeom,
37                              const bool theCopyMesh)
38 {
39   if(!theShape.get()) {
40     return;
41   }
42
43   // Getting shape.
44   const TopoDS_Shape& aBaseShape = theShape->impl<TopoDS_Shape>();
45
46   // Creating copy.
47   BRepBuilderAPI_Copy* aBuilder = new BRepBuilderAPI_Copy(aBaseShape, theCopyGeom, theCopyMesh);
48   this->setImpl(aBuilder);
49   this->setBuilderType(OCCT_BRepBuilderAPI_MakeShape);
50
51   TopoDS_Shape aResult = aBuilder->Shape();
52
53   std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape());
54   aShape->setImpl(new TopoDS_Shape(aResult));
55   this->setShape(aShape);
56   this->setDone(true);
57 }