]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMAlgo/BlockFix_UnionEdges.cxx
Salome HOME
Update copyright information
[modules/geom.git] / src / GEOMAlgo / BlockFix_UnionEdges.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File:      BlockFix_UnionEdges.cxx
23 // Created:   07.12.04 15:27:30
24 // Author:    Sergey KUUL
25 //
26 #include <BlockFix_UnionEdges.ixx>
27
28 #include <Approx_Curve3d.hxx>
29 #include <BRepAdaptor_HCompCurve.hxx>
30 #include <BRep_Builder.hxx>
31 #include <BRep_Tool.hxx>
32 #include <GC_MakeCircle.hxx>
33 #include <Geom_BSplineCurve.hxx>
34 #include <Geom_Circle.hxx>
35 #include <Geom_Curve.hxx>
36 #include <Geom_Line.hxx>
37 #include <Geom_TrimmedCurve.hxx>
38 #include <ShapeAnalysis_Edge.hxx>
39 #include <ShapeFix_Edge.hxx>
40 #include <ShapeFix_Face.hxx>
41 #include <ShapeFix_Shell.hxx>
42 #include <TColgp_SequenceOfPnt.hxx>
43 #include <TColStd_MapOfInteger.hxx>
44 #include <TopExp.hxx>
45 #include <TopExp_Explorer.hxx>
46 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
47 #include <TopTools_IndexedMapOfShape.hxx>
48 #include <TopTools_ListOfShape.hxx>
49 #include <TopTools_MapOfShape.hxx>
50 #include <TopTools_ListIteratorOfListOfShape.hxx>
51 #include <TopTools_SequenceOfShape.hxx>
52 #include <TopoDS.hxx>
53 #include <TopoDS_Edge.hxx>
54 #include <TopoDS_Face.hxx>
55 #include <TopoDS_Shell.hxx>
56 #include <TopoDS_Solid.hxx>
57 #include <TopoDS_Vertex.hxx>
58 #include <TopoDS_Iterator.hxx>
59
60 #include "utilities.h"
61
62 //=======================================================================
63 //function : BlockFix_UnionEdges()
64 //purpose  : Constructor
65 //=======================================================================
66
67 BlockFix_UnionEdges::BlockFix_UnionEdges (  )
68 {
69 }
70
71
72 //=======================================================================
73 //function : MergeEdges
74 //purpose  : auxilary
75 //=======================================================================
76 static Standard_Boolean MergeEdges(const TopTools_SequenceOfShape& SeqEdges,
77                                    const TopoDS_Face& aFace,
78                                    const Standard_Real Tol,
79                                    TopoDS_Edge& anEdge)
80 {
81   // make chain for union
82   BRep_Builder B;
83   ShapeAnalysis_Edge sae;
84   TopoDS_Edge FirstE = TopoDS::Edge(SeqEdges.Value(1));
85   TopoDS_Edge LastE = FirstE;
86   TopoDS_Vertex VF = sae.FirstVertex(FirstE);
87   TopoDS_Vertex VL = sae.LastVertex(LastE);
88   TopTools_SequenceOfShape aChain;
89   aChain.Append(FirstE);
90   TColStd_MapOfInteger IndUsedEdges;
91   IndUsedEdges.Add(1);
92   Standard_Integer j;
93   for(j=2; j<=SeqEdges.Length(); j++) {
94     for(Standard_Integer k=2; k<=SeqEdges.Length(); k++) {
95       if(IndUsedEdges.Contains(k)) continue;
96       TopoDS_Edge edge = TopoDS::Edge(SeqEdges.Value(k));
97       TopoDS_Vertex VF2 = sae.FirstVertex(edge);
98       TopoDS_Vertex VL2 = sae.LastVertex(edge);
99       if(sae.FirstVertex(edge).IsSame(VL)) {
100         aChain.Append(edge);
101         LastE = edge;
102         VL = sae.LastVertex(LastE);
103         IndUsedEdges.Add(k);
104       }
105       else if(sae.LastVertex(edge).IsSame(VF)) {
106         aChain.Prepend(edge);
107         FirstE = edge;
108         VF = sae.FirstVertex(FirstE);
109         IndUsedEdges.Add(k);
110       }
111     }
112   }
113   if(aChain.Length()<SeqEdges.Length()) {
114     MESSAGE ("can not create correct chain...");
115     return Standard_False;
116   }
117   // union edges in chain
118   // first step: union lines and circles
119   TopLoc_Location Loc;
120   Standard_Real fp1,lp1,fp2,lp2;
121   for(j=1; j<aChain.Length(); j++) {
122     TopoDS_Edge edge1 = TopoDS::Edge(aChain.Value(j));
123     Handle(Geom_Curve) c3d1 = BRep_Tool::Curve(edge1,Loc,fp1,lp1);
124     if(c3d1.IsNull()) break;
125     while(c3d1->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))) {
126       Handle(Geom_TrimmedCurve) tc =
127         Handle(Geom_TrimmedCurve)::DownCast(c3d1);
128       c3d1 = tc->BasisCurve();
129     }
130     TopoDS_Edge edge2 = TopoDS::Edge(aChain.Value(j+1));
131     Handle(Geom_Curve) c3d2 = BRep_Tool::Curve(edge2,Loc,fp2,lp2);
132     if(c3d2.IsNull()) break;
133     while(c3d2->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))) {
134       Handle(Geom_TrimmedCurve) tc =
135         Handle(Geom_TrimmedCurve)::DownCast(c3d2);
136       c3d2 = tc->BasisCurve();
137     }
138     if( c3d1->IsKind(STANDARD_TYPE(Geom_Line)) && c3d2->IsKind(STANDARD_TYPE(Geom_Line)) ) {
139       // union lines
140       Handle(Geom_Line) L1 = Handle(Geom_Line)::DownCast(c3d1);
141       Handle(Geom_Line) L2 = Handle(Geom_Line)::DownCast(c3d2);
142       gp_Dir Dir1 = L1->Position().Direction();
143       gp_Dir Dir2 = L2->Position().Direction();
144       if(!Dir1.IsEqual(Dir2,Precision::Angular())) continue;
145       // can union lines => create new edge
146       TopoDS_Vertex V1 = sae.FirstVertex(edge1);
147       gp_Pnt PV1 = BRep_Tool::Pnt(V1);
148       TopoDS_Vertex V2 = sae.LastVertex(edge2);
149       gp_Pnt PV2 = BRep_Tool::Pnt(V2);
150       gp_Vec Vec(PV1,PV2);
151       Handle(Geom_Line) L = new Geom_Line(gp_Ax1(PV1,Vec));
152       Standard_Real dist = PV1.Distance(PV2);
153       Handle(Geom_TrimmedCurve) tc = new Geom_TrimmedCurve(L,0.0,dist);
154       TopoDS_Edge E;
155       B.MakeEdge (E,tc,Precision::Confusion());
156       B.Add (E,V1);  B.Add (E,V2);
157       B.UpdateVertex(V1, 0., E, 0.);
158       B.UpdateVertex(V2, dist, E, 0.);
159       ShapeFix_Edge sfe;
160       sfe.FixAddPCurve(E,aFace,Standard_False);
161       sfe.FixSameParameter(E);
162       aChain.Remove(j);
163       aChain.SetValue(j,E);
164       j--;
165     }
166     if( c3d1->IsKind(STANDARD_TYPE(Geom_Circle)) && c3d2->IsKind(STANDARD_TYPE(Geom_Circle)) ) {
167       // union circles
168       Handle(Geom_Circle) C1 = Handle(Geom_Circle)::DownCast(c3d1);
169       Handle(Geom_Circle) C2 = Handle(Geom_Circle)::DownCast(c3d2);
170       gp_Pnt P01 = C1->Location();
171       gp_Pnt P02 = C2->Location();
172       if(P01.Distance(P02)>Precision::Confusion()) continue;
173       // can union circles => create new edge
174       TopoDS_Vertex V1 = sae.FirstVertex(edge1);
175       gp_Pnt PV1 = BRep_Tool::Pnt(V1);
176       TopoDS_Vertex V2 = sae.LastVertex(edge2);
177       gp_Pnt PV2 = BRep_Tool::Pnt(V2);
178       TopoDS_Vertex VM = sae.LastVertex(edge1);
179       gp_Pnt PVM = BRep_Tool::Pnt(VM);
180       GC_MakeCircle MC(PV1,PVM,PV2);
181       Handle(Geom_Circle) C = MC.Value();
182       gp_Pnt P0 = C->Location();
183       gp_Dir D1(gp_Vec(P0,PV1));
184       gp_Dir D2(gp_Vec(P0,PV2));
185       Standard_Real fpar = C->XAxis().Direction().Angle(D1);
186       Standard_Real lpar = C->XAxis().Direction().Angle(D2);
187       Handle(Geom_TrimmedCurve) tc = new Geom_TrimmedCurve(C,fpar,lpar);
188       TopoDS_Edge E;
189       B.MakeEdge (E,tc,Precision::Confusion());
190       B.Add (E,V1);  B.Add (E,V2);
191       B.UpdateVertex(V1, fpar, E, 0.);
192       B.UpdateVertex(V2, lpar, E, 0.);
193       ShapeFix_Edge sfe;
194       sfe.FixAddPCurve(E,aFace,Standard_False);
195       sfe.FixSameParameter(E);
196       aChain.Remove(j);
197       aChain.SetValue(j,E);
198       j--;
199     }
200   }
201   if(j<aChain.Length()) {
202     MESSAGE ("null curve3d in edge...");
203     return Standard_False;
204   }
205   if(aChain.Length()>1) {
206     // second step: union edges with various curves
207     // skl for bug 0020052 from Mantis: perform such unions
208     // only if curves are bspline or bezier
209     bool NeedUnion = true;
210     for(j=1; j<=aChain.Length(); j++) {
211       TopoDS_Edge edge = TopoDS::Edge(aChain.Value(j));
212       Handle(Geom_Curve) c3d = BRep_Tool::Curve(edge,Loc,fp1,lp1);
213       if(c3d.IsNull()) continue;
214       while(c3d->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))) {
215         Handle(Geom_TrimmedCurve) tc =
216           Handle(Geom_TrimmedCurve)::DownCast(c3d);
217         c3d = tc->BasisCurve();
218       }
219       if( ( c3d->IsKind(STANDARD_TYPE(Geom_BSplineCurve)) ||
220             c3d->IsKind(STANDARD_TYPE(Geom_BezierCurve)) ) ) continue;
221       NeedUnion = false;
222       break;
223     }
224     if(NeedUnion) {
225       MESSAGE ("can not make analitical union => make approximation");
226       TopoDS_Wire W;
227       B.MakeWire(W);
228       for(j=1; j<=aChain.Length(); j++) {
229         TopoDS_Edge edge = TopoDS::Edge(aChain.Value(j));
230         B.Add(W,edge);
231       }
232       Handle(BRepAdaptor_HCompCurve) Adapt = new BRepAdaptor_HCompCurve(W);
233       Approx_Curve3d Conv(Adapt,Tol,GeomAbs_C1,9,1000);
234       Handle(Geom_BSplineCurve) bc = Conv.Curve();
235       TopoDS_Edge E;
236       B.MakeEdge (E,bc,Precision::Confusion());
237       B.Add (E,VF);
238       B.Add (E,VL);
239       aChain.SetValue(1,E);
240     }
241     else {
242       MESSAGE ("can not make approximation for such types of curves");
243       return Standard_False;
244     }
245   }
246
247   anEdge = TopoDS::Edge(aChain.Value(1));
248   return Standard_True;
249 }
250
251
252 //=======================================================================
253 //function : Perform
254 //purpose  : 
255 //=======================================================================
256
257 TopoDS_Shape BlockFix_UnionEdges::Perform(const TopoDS_Shape& Shape,
258                                           const Standard_Real Tol)
259 {
260   myContext = new ShapeBuild_ReShape;
261   myTolerance = Tol;
262   TopoDS_Shape aResult = myContext->Apply(Shape);
263   
264   // processing each solid
265   TopExp_Explorer exps;
266   for(exps.Init(Shape, TopAbs_SOLID); exps.More(); exps.Next()) {
267     TopoDS_Solid aSolid = TopoDS::Solid(exps.Current());
268
269     TopTools_IndexedMapOfShape ChangedFaces;
270     
271     // creating map of edge faces
272     TopTools_IndexedDataMapOfShapeListOfShape aMapEdgeFaces;
273     TopExp::MapShapesAndAncestors(aSolid, TopAbs_EDGE, TopAbs_FACE, aMapEdgeFaces);
274   
275     Handle(ShapeBuild_ReShape) aContext = new ShapeBuild_ReShape;
276     TopoDS_Shape aRes = aSolid;
277     aRes = aContext->Apply(aSolid);
278
279     // processing each face
280     TopExp_Explorer exp;
281     for(exp.Init(aRes, TopAbs_FACE); exp.More(); exp.Next()) {
282       TopoDS_Face aFace =
283         TopoDS::Face(aContext->Apply(exp.Current().Oriented(TopAbs_FORWARD)));
284       TopTools_IndexedDataMapOfShapeListOfShape aMapFacesEdges;
285
286       for(TopExp_Explorer expe(aFace,TopAbs_EDGE); expe.More(); expe.Next()) {
287         TopoDS_Edge edge = TopoDS::Edge(expe.Current());
288         if(!aMapEdgeFaces.Contains(edge)) continue;
289         const TopTools_ListOfShape& aList = aMapEdgeFaces.FindFromKey(edge);
290         TopTools_ListIteratorOfListOfShape anIter(aList);
291         for( ; anIter.More(); anIter.Next()) {
292           TopoDS_Face face = TopoDS::Face(anIter.Value());
293           TopoDS_Face face1 = TopoDS::Face(aContext->Apply(anIter.Value()));
294           if(face1.IsSame(aFace)) continue;
295           if(aMapFacesEdges.Contains(face)) {
296             aMapFacesEdges.ChangeFromKey(face).Append(edge);
297           }
298           else {
299             TopTools_ListOfShape ListEdges;
300             ListEdges.Append(edge);
301             aMapFacesEdges.Add(face,ListEdges);
302           }
303         }
304       }
305       
306       for(Standard_Integer i=1; i<=aMapFacesEdges.Extent(); i++) {
307         const TopTools_ListOfShape& ListEdges = aMapFacesEdges.FindFromIndex(i);
308         TopTools_SequenceOfShape SeqEdges;
309         TopTools_ListIteratorOfListOfShape anIter(ListEdges);
310         for( ; anIter.More(); anIter.Next()) {
311           SeqEdges.Append(anIter.Value());
312         }
313         if(SeqEdges.Length()==1) continue;
314         TopoDS_Edge E;
315         if( MergeEdges(SeqEdges,aFace,Tol,E) ) {
316           // now we have only one edge - aChain.Value(1)
317           // we have to replace old ListEdges with this new edge
318           aContext->Replace(SeqEdges(1),E);
319           for(Standard_Integer j=2; j<=SeqEdges.Length(); j++) {
320             aContext->Remove(SeqEdges(j));
321           }
322           TopoDS_Face tmpF = TopoDS::Face(exp.Current());
323           if( !ChangedFaces.Contains(tmpF) )
324             ChangedFaces.Add(tmpF);
325           tmpF = TopoDS::Face(aMapFacesEdges.FindKey(i));
326           if( !ChangedFaces.Contains(tmpF) )
327             ChangedFaces.Add(tmpF);
328         }
329       }
330       
331     } // end processing each face
332     
333     // fix changed faces and replace them in the local context
334     for(Standard_Integer i=1; i<=ChangedFaces.Extent(); i++) {
335       TopoDS_Face aFace = TopoDS::Face(aContext->Apply(ChangedFaces.FindKey(i)));
336       Handle(ShapeFix_Face) sff = new ShapeFix_Face(aFace);
337       sff->SetContext(myContext);
338       sff->SetPrecision(myTolerance);
339       sff->SetMinTolerance(myTolerance);
340       sff->SetMaxTolerance(Max(1.,myTolerance*1000.));
341       sff->Perform();
342       aContext->Replace(aFace,sff->Face());
343     }
344
345     if(ChangedFaces.Extent()>0) {
346       // fix changed shell and replace it in the local context
347       TopoDS_Shape aRes1 = aContext->Apply(aRes);
348       TopExp_Explorer expsh;
349       for(expsh.Init(aRes1, TopAbs_SHELL); expsh.More(); expsh.Next()) {
350         TopoDS_Shell aShell = TopoDS::Shell(expsh.Current());
351         Handle(ShapeFix_Shell) sfsh = new ShapeFix_Shell;
352         sfsh->FixFaceOrientation(aShell);
353         aContext->Replace(aShell,sfsh->Shell());
354       }
355       TopoDS_Shape aRes2 = aContext->Apply(aRes1);
356       // put new solid into global context
357       myContext->Replace(aSolid,aRes2);
358     }
359
360   } // end processing each solid
361
362   aResult = myContext->Apply(Shape);
363   return aResult;
364 }