Salome HOME
Issue 2229: additional fix for the interactive creation of the constraint.
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_WireBuilder.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "GeomAlgoAPI_WireBuilder.h"
22
23 #include <BRepBuilderAPI_MakeWire.hxx>
24 #include <TopoDS.hxx>
25 #include <TopoDS_Wire.hxx>
26 #include <TopExp_Explorer.hxx>
27
28 //=================================================================================================
29 std::shared_ptr<GeomAPI_Shape> GeomAlgoAPI_WireBuilder::wire(const ListOfShape& theShapes)
30 {
31   TopTools_ListOfShape aListOfEdges;
32
33   for(ListOfShape::const_iterator anIt = theShapes.cbegin(); anIt != theShapes.cend(); ++anIt) {
34     const TopoDS_Shape& aShape = (*anIt)->impl<TopoDS_Shape>();
35     switch(aShape.ShapeType()) {
36       case TopAbs_EDGE: {
37         aListOfEdges.Append(aShape);
38         break;
39       }
40       case TopAbs_WIRE: {
41         for(TopExp_Explorer anExp(aShape, TopAbs_EDGE); anExp.More(); anExp.Next()) {
42           aListOfEdges.Append(anExp.Current());
43         }
44         break;
45       }
46       default: {
47         return GeomShapePtr();
48       }
49     }
50   }
51
52   BRepBuilderAPI_MakeWire aWireBuilder;
53   aWireBuilder.Add(aListOfEdges);
54   if(aWireBuilder.Error() != BRepBuilderAPI_WireDone) {
55     return GeomShapePtr();
56   }
57
58   GeomShapePtr aResultShape(new GeomAPI_Shape());
59   aResultShape->setImpl(new TopoDS_Shape(aWireBuilder.Wire()));
60   return aResultShape;
61 }