Salome HOME
4d56201449ec8aa65189a5e2ccf9bc03043424b9
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Sewing.cpp
1 // Copyright (C) 2014-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_Sewing.h"
21
22 #include <BRep_Builder.hxx>
23 #include <BRepBuilderAPI_MakeShell.hxx>
24 #include <BRepBuilderAPI_Sewing.hxx>
25 #include <TopExp_Explorer.hxx>
26 #include <TopoDS_Iterator.hxx>
27 #include <TopoDS_Shape.hxx>
28
29 //==================================================================================================
30 GeomAlgoAPI_Sewing::GeomAlgoAPI_Sewing(const ListOfShape& theShapes)
31 {
32   build(theShapes);
33 }
34
35 void GeomAlgoAPI_Sewing::build(const ListOfShape& theShapes)
36 {
37   if(theShapes.empty()) {
38     return;
39   }
40
41   BRepBuilderAPI_Sewing* aSewingBuilder = new BRepBuilderAPI_Sewing();
42   this->setImpl(aSewingBuilder);
43
44   for(ListOfShape::const_iterator anIt = theShapes.cbegin(); anIt != theShapes.cend(); ++anIt) {
45     const TopoDS_Shape& aShape = (*anIt)->impl<TopoDS_Shape>();
46     aSewingBuilder->Add(aShape);
47   }
48
49   aSewingBuilder->Perform();
50
51   TopoDS_Shape aResult = aSewingBuilder->SewedShape();
52   BRep_Builder aBuilder;
53   if(aResult.ShapeType() == TopAbs_COMPOUND) {
54     TopoDS_Compound aResultCompound;
55     aBuilder.MakeCompound(aResultCompound);
56     for(TopoDS_Iterator anIt(aResult); anIt.More(); anIt.Next()) {
57       const TopoDS_Shape aSubShape = anIt.Value();
58       if(aSubShape.ShapeType() == TopAbs_SHELL) {
59         aBuilder.Add(aResultCompound, aSubShape);
60       } else if (aSubShape.ShapeType() == TopAbs_FACE) {
61         TopoDS_Shell aShell;
62         aBuilder.MakeShell(aShell);
63         aBuilder.Add(aShell, aSubShape);
64         aBuilder.Add(aResultCompound, aShell);
65       }
66     }
67     aResult = aResultCompound;
68   } else if(aResult.ShapeType() == TopAbs_FACE) {
69     TopoDS_Shell aShell;
70     aBuilder.MakeShell(aShell);
71     aBuilder.Add(aShell, aResult);
72     aResult = aShell;
73   }
74
75   std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape());
76   aShape->setImpl(new TopoDS_Shape(aResult));
77   this->setShape(aShape);
78   this->setDone(true);
79 }
80
81 //==================================================================================================
82 #include <GeomAPI_ShapeIterator.h>
83
84 void GeomAlgoAPI_Sewing::modified(const std::shared_ptr<GeomAPI_Shape> theShape,
85                                   ListOfShape& theHistory)
86 {
87   if(!theShape.get()) {
88     return;
89   }
90
91   const TopoDS_Shape& aShape = theShape->impl<TopoDS_Shape>();
92   const BRepBuilderAPI_Sewing& aSewingBuilder = this->impl<BRepBuilderAPI_Sewing>();
93
94   TopoDS_Shape aModifiedShape = aSewingBuilder.Modified(aShape);
95   if(aModifiedShape.IsEqual(aShape)) {
96     aModifiedShape = aSewingBuilder.ModifiedSubShape(aShape);
97   }
98
99   for(TopExp_Explorer anExp(aModifiedShape, aShape.ShapeType()); anExp.More(); anExp.Next()) {
100     GeomShapePtr aGeomShape(new GeomAPI_Shape());
101     aGeomShape->setImpl(new TopoDS_Shape(anExp.Current()));
102     theHistory.push_back(aGeomShape);
103   }
104
105   if (theShape->shapeType() < GeomAPI_Shape::FACE) {
106     ListOfShape aNewShapes;
107     // collect faces and parent shapes, if it is not done yet
108     if (!isNewShapesCollected(theShape, GeomAPI_Shape::FACE))
109       collectNewShapes(theShape, GeomAPI_Shape::FACE);
110
111     for (GeomAPI_ShapeIterator anIt(shape()); anIt.more(); anIt.next()) {
112       GeomShapePtr anOldShapesCompound =
113           oldShapesForNew(theShape, anIt.current(), GeomAPI_Shape::FACE);
114       if (!anOldShapesCompound->isNull())
115         aNewShapes.push_back(anIt.current());
116     }
117
118     if (!aNewShapes.empty())
119       theHistory = aNewShapes;
120   }
121 }