0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / BRepOffsetAPI / BRepOffsetAPI_MiddlePath.cxx
1 // Created on: 2012-08-06
2 // Created by: jgv@ROLEX
3 // Copyright (c) 2012-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #include <BRepOffsetAPI_MiddlePath.ixx>
17 #include <BRepOffsetAPI_MiddlePath.hxx>
18
19 #include <ShapeUpgrade_UnifySameDomain.hxx>
20
21 #include <gp_Lin.hxx>
22 #include <Geom_Curve.hxx>
23 #include <Geom_TrimmedCurve.hxx>
24 #include <Geom_Line.hxx>
25 #include <Geom_BezierCurve.hxx>
26 #include <Geom_BSplineCurve.hxx>
27 #include <BRep_Tool.hxx>
28 #include <gce_MakeLin.hxx>
29
30 #include <BRepLib_MakeWire.hxx>
31
32 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
33 #include <TopTools_MapIteratorOfMapOfShape.hxx>
34 #include <TopExp.hxx>
35 #include <TopTools_ListIteratorOfListOfShape.hxx>
36 #include <TopoDS.hxx>
37 #include <BRepTools.hxx>
38 #include <TopTools_SequenceOfShape.hxx>
39 #include <BRepTools_WireExplorer.hxx>
40 #include <TopoDS_Iterator.hxx>
41 #include <BRep_Builder.hxx>
42 #include <Precision.hxx>
43 #include <TopExp_Explorer.hxx>
44 #include <BRepExtrema_DistShapeShape.hxx>
45 #include <Geom2d_Curve.hxx>
46 #include <Geom2d_Line.hxx>
47 #include <GCE2d_MakeLine.hxx>
48 #include <BRepLib_MakeEdge.hxx>
49 #include <BRepLib.hxx>
50 #include <GeomAbs_CurveType.hxx>
51 #include <BRepAdaptor_Curve.hxx>
52 #include <TopTools_Array1OfShape.hxx>
53 #include <BRepLib_MakeFace.hxx>
54 #include <TColgp_Array1OfPnt.hxx>
55 #include <TColgp_HArray1OfPnt.hxx>
56 #include <TColgp_Array1OfVec.hxx>
57 #include <TColStd_HArray1OfBoolean.hxx>
58 #include <GProp_GProps.hxx>
59 #include <BRepGProp.hxx>
60 #include <Geom_Circle.hxx>
61 #include <gp_Circ.hxx>
62 #include <GC_MakeCircle.hxx>
63 #include <TColgp_SequenceOfPnt.hxx>
64 #include <GeomLib.hxx>
65 #include <GeomAPI_Interpolate.hxx>
66
67 static Standard_Boolean IsLinear(const TopoDS_Edge& anEdge,
68                                  gp_Lin& aLine)
69 {
70   Standard_Real fpar, lpar;
71   Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, fpar, lpar);
72   if (aCurve->IsInstance(STANDARD_TYPE(Geom_TrimmedCurve)))
73     aCurve = ((Handle(Geom_TrimmedCurve)&) aCurve)->BasisCurve();
74
75   gp_Pnt Pnt1, Pnt2;
76   if (aCurve->IsKind(STANDARD_TYPE(Geom_Line)))
77   {
78     aLine = ((Handle(Geom_Line)&) aCurve)->Lin();
79     return Standard_True;
80   }
81   else if (aCurve->IsKind(STANDARD_TYPE(Geom_BezierCurve)))
82   {
83     Handle(Geom_BezierCurve) theBezier = (Handle(Geom_BezierCurve)&) aCurve;
84     if (theBezier->NbPoles() == 2)
85     {
86       Pnt1 = theBezier->Pole(1);
87       Pnt2 = theBezier->Pole(2);
88       aLine = gce_MakeLin(Pnt1, Pnt2);
89       return Standard_True;
90     }
91   }
92   else if (aCurve->IsKind(STANDARD_TYPE(Geom_BSplineCurve)))
93   {
94     Handle(Geom_BSplineCurve) theBSpline = (Handle(Geom_BSplineCurve)&) aCurve;
95     if (theBSpline->NbPoles() == 2)
96     {
97       Pnt1 = theBSpline->Pole(1);
98       Pnt2 = theBSpline->Pole(2);
99       aLine = gce_MakeLin(Pnt1, Pnt2);
100       return Standard_True;
101     }
102   }
103
104   return Standard_False;
105 }
106
107 static GeomAbs_CurveType TypeOfEdge(const TopoDS_Edge& anEdge)
108 {
109   gp_Lin aLin;
110   if (IsLinear(anEdge, aLin))
111     return GeomAbs_Line;
112
113   BRepAdaptor_Curve BAcurve(anEdge);
114   return BAcurve.GetType();
115 }
116
117 static gp_Vec TangentOfEdge(const TopoDS_Shape& aShape,
118                             const Standard_Boolean OnFirst)
119 {
120   TopoDS_Edge anEdge = TopoDS::Edge(aShape);
121   TopAbs_Orientation anOr = anEdge.Orientation();
122   
123   Standard_Real fpar, lpar;
124   Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, fpar, lpar);
125   Standard_Real thePar;
126   if (OnFirst)
127     thePar = (anOr == TopAbs_FORWARD)? fpar : lpar;
128   else
129     thePar = (anOr == TopAbs_FORWARD)? lpar : fpar;
130
131   gp_Pnt thePoint;
132   gp_Vec theTangent;
133   aCurve->D1(thePar, thePoint, theTangent);
134   if (anOr == TopAbs_REVERSED)
135     theTangent.Reverse();
136
137   return theTangent;
138 }
139
140
141 static Standard_Boolean IsValidEdge(const TopoDS_Edge& theEdge,
142                                     const TopoDS_Face& theFace)
143 {
144   TopoDS_Vertex V1, V2;
145   TopExp::Vertices(theEdge, V1, V2);
146
147   Standard_Real Tol = Precision::Confusion();
148   Standard_Integer i;
149   
150   TopExp_Explorer Explo(theFace, TopAbs_EDGE);
151   for (; Explo.More(); Explo.Next())
152   {
153     const TopoDS_Shape& anEdge = Explo.Current();
154     BRepExtrema_DistShapeShape DistMini(theEdge, anEdge);
155     if (DistMini.Value() <= Tol)
156     {
157       for (i = 1; i <= DistMini.NbSolution(); i++)
158       {
159         BRepExtrema_SupportType theType = DistMini.SupportTypeShape2(i);
160         if (theType == BRepExtrema_IsOnEdge)
161           return Standard_False;
162         //theType is "IsVertex"
163         TopoDS_Shape aVertex = DistMini.SupportOnShape2(i);
164         if (!(aVertex.IsSame(V1) || aVertex.IsSame(V2)))
165           return Standard_False;
166       }
167     }
168   }
169
170   return Standard_True;
171 }
172
173 /*
174 //=======================================================================
175 //function : BRepOffsetAPI_MiddlePath
176 //purpose  : Constructor
177 //=======================================================================
178
179 BRepOffsetAPI_MiddlePath::BRepOffsetAPI_MiddlePath(const TopoDS_Shape& aShape,
180                                                    const TopoDS_Wire&  StartWire)
181 {
182   myInitialShape = aShape;
183   myStartWire    = StartWire;
184   myClosedSection = myStartWire.Closed();
185 }
186
187 //=======================================================================
188 //function : BRepOffsetAPI_MiddlePath
189 //purpose  : Constructor
190 //=======================================================================
191
192 BRepOffsetAPI_MiddlePath::BRepOffsetAPI_MiddlePath(const TopoDS_Shape& aShape,
193                                                    const TopoDS_Edge&  StartEdge)
194 {
195   myInitialShape = aShape;
196
197   BRepLib_MakeWire MW(StartEdge);
198   
199   //BB.Add(myStartWire, StartEdge);
200
201   TopTools_IndexedDataMapOfShapeListOfShape EFmap;
202   TopTools_IndexedDataMapOfShapeListOfShape VEmap;
203   TopExp::MapShapesAndAncestors(myInitialShape, TopAbs_EDGE,   TopAbs_FACE, EFmap);
204   TopExp::MapShapesAndAncestors(myInitialShape, TopAbs_VERTEX, TopAbs_EDGE, VEmap);
205   
206   //Standard_Boolean Start = Standard_True;
207   //if (Start)
208   //{
209   //TopExp::Vertices(CurEdge, V1, V2);
210   //  StartVertex = V1;
211   //  CurVertex   = V2;
212   //  if (VEmap(CurVertex).Extent() == 2) //end: two free edges
213   //  {
214   //    StartVertex = V2;
215   //    CurVertex   = V1;
216   //    if (VEmap(CurVertex).Extent() == 2) //end: two free edges
217   //      break;
218   //  }
219   //  Start = Standard_False;
220   //  continue;
221   //}
222
223   TopoDS_Vertex StartVertex, CurVertex, V1, V2;
224   TopExp::Vertices(StartEdge, StartVertex, CurVertex);
225   TopoDS_Edge CurEdge = StartEdge;
226   Standard_Integer i;
227   for (i = 1; i <= 2; i++)
228   {
229     for (;;)
230     {
231       const TopTools_ListOfShape& LE = VEmap.FindFromKey(CurVertex);
232       if (LE.Extent() == 2) //end: two free edges or one closed free edge
233         break;
234       TopTools_ListIteratorOfListOfShape itl(LE);
235       TopoDS_Edge anEdge;
236       for (; itl.More(); itl.Next())
237       {
238         anEdge = TopoDS::Edge(itl.Value());
239         if (anEdge.IsSame(CurEdge))
240           continue;
241         if (EFmap.FindFromKey(anEdge).Extent() == 1) //another free edge found
242           break;
243       }
244       //BB.Add(myStartWire, anEdge);
245       MW.Add(anEdge);
246       TopExp::Vertices(anEdge, V1, V2);
247       CurVertex = (V1.IsSame(CurVertex))? V2 : V1;
248       CurEdge = anEdge;
249       if (CurVertex.IsSame(StartVertex))
250         break;
251     }
252     if (CurVertex.IsSame(StartVertex))
253       break;
254     CurVertex = StartVertex;
255     CurEdge = StartEdge;
256   }
257   
258   myStartWire = MW.Wire();
259   myClosedSection = myStartWire.Closed();
260 }
261 */
262
263 //=======================================================================
264 //function : BRepOffsetAPI_MiddlePath
265 //purpose  : Constructor
266 //=======================================================================
267
268 BRepOffsetAPI_MiddlePath::BRepOffsetAPI_MiddlePath(const TopoDS_Shape& aShape,
269                                                    const TopoDS_Shape& StartShape,
270                                                    const TopoDS_Shape& EndShape)
271 {
272   ShapeUpgrade_UnifySameDomain Unifier(aShape);
273   Unifier.Build();
274   myInitialShape = Unifier.Shape();
275
276   TopoDS_Wire aStartWire, anEndWire;
277   if (StartShape.ShapeType() == TopAbs_FACE)
278   {
279     const TopoDS_Face& StartFace = TopoDS::Face(StartShape);
280     aStartWire = BRepTools::OuterWire(StartFace);
281   }
282   else
283     aStartWire = TopoDS::Wire(StartShape);
284   
285   if (EndShape.ShapeType() == TopAbs_FACE)
286   {
287     const TopoDS_Face& EndFace = TopoDS::Face(EndShape);
288     anEndWire = BRepTools::OuterWire(EndFace);
289   }
290   else
291     anEndWire = TopoDS::Wire(EndShape);
292
293   BRepLib_MakeWire MWstart;
294   //TopTools_MapOfShape MapEdges;
295   BRepTools_WireExplorer wexp(aStartWire);
296   for (; wexp.More(); wexp.Next())
297   {
298     TopoDS_Shape anEdge = wexp.Current();
299     TopoDS_Shape NewEdge = Unifier.Generated(anEdge);
300     if (!NewEdge.IsNull())
301       MWstart.Add(TopoDS::Edge(NewEdge));
302   }
303   myStartWire = MWstart.Wire();
304
305   BRepLib_MakeWire MWend;
306   //MapEdges.Clear();
307   for (wexp.Init(anEndWire); wexp.More(); wexp.Next())
308   {
309     TopoDS_Shape anEdge = wexp.Current();
310     TopoDS_Shape NewEdge = Unifier.Generated(anEdge);
311     if (!NewEdge.IsNull())
312       MWend.Add(TopoDS::Edge(NewEdge));
313   }
314   myEndWire = MWend.Wire();
315
316   myClosedSection = myStartWire.Closed();
317   myClosedRing    = myStartWire.IsSame(myEndWire);
318 }
319
320 //=======================================================================
321 //function : Build
322 //purpose  : 
323 //=======================================================================
324
325 void BRepOffsetAPI_MiddlePath::Build()
326 {
327   TopTools_ListIteratorOfListOfShape itl;
328   
329   TopTools_SequenceOfShape StartVertices;
330   TopTools_MapOfShape EndVertices;
331   TopTools_MapOfShape EndEdges;
332   BRepOffsetAPI_SequenceOfSequenceOfShape SectionsEdges;
333   
334   BRepTools_WireExplorer wexp(myStartWire);
335   TopTools_SequenceOfShape EdgeSeq;
336   for (; wexp.More(); wexp.Next())
337   {
338     StartVertices.Append(wexp.CurrentVertex());
339     EdgeSeq.Append(wexp.Current());
340   }
341   if (!myClosedSection)
342     StartVertices.Append(wexp.CurrentVertex());
343   SectionsEdges.Append(EdgeSeq);
344   
345   for (wexp.Init(myEndWire); wexp.More(); wexp.Next())
346   {
347     EndVertices.Add(wexp.CurrentVertex());
348     EndEdges.Add(wexp.Current());
349   }
350   if (!myClosedSection)
351     EndVertices.Add(wexp.CurrentVertex());
352   
353
354   TopoDS_Iterator itw(myStartWire);
355   for (; itw.More(); itw.Next())
356     myStartWireEdges.Add(itw.Value());
357   for (itw.Initialize(myEndWire); itw.More(); itw.Next())
358     myEndWireEdges.Add(itw.Value());
359
360   TopTools_IndexedDataMapOfShapeListOfShape VEmap;
361   TopTools_IndexedDataMapOfShapeListOfShape EFmap;
362   TopExp::MapShapesAndAncestors(myInitialShape, TopAbs_VERTEX, TopAbs_EDGE, VEmap);
363   TopExp::MapShapesAndAncestors(myInitialShape, TopAbs_EDGE,   TopAbs_FACE, EFmap);
364
365   TopTools_MapOfShape CurVertices;
366   
367   Standard_Integer i, j, k;
368   TopoDS_Edge anEdge;
369   TopoDS_Vertex V1, V2, NextVertex;
370   //Initialization of <myPaths>
371   for (i = 1; i <= StartVertices.Length(); i++)
372   {
373     TopTools_SequenceOfShape Edges;
374     const TopTools_ListOfShape& LE = VEmap.FindFromKey(StartVertices(i));
375     for (itl.Initialize(LE); itl.More(); itl.Next())
376     {
377       anEdge = TopoDS::Edge(itl.Value());
378       if (!myStartWireEdges.Contains(anEdge))
379       {
380         TopExp::Vertices(anEdge, V1, V2, Standard_True);
381         if (V1.IsSame(StartVertices(i)))
382           CurVertices.Add(V2);
383         else
384         {
385           anEdge.Reverse();
386           CurVertices.Add(V1);
387         }
388         Edges.Append(anEdge);
389         break;
390       }
391     }
392     myPaths.Append(Edges);
393   }
394
395   //Filling of "myPaths"
396   TopTools_ListOfShape NextVertices;
397   for (;;)
398   {
399     for (i = 1; i <= myPaths.Length(); i++)
400     {
401       const TopoDS_Shape& theShape = myPaths(i).Last();
402       TopoDS_Edge theEdge;
403       TopoDS_Vertex theVertex;
404       if (theShape.ShapeType() == TopAbs_EDGE)
405       {
406         theEdge = TopoDS::Edge(theShape);
407         theVertex = TopExp::LastVertex(theEdge, Standard_True);
408       }
409       else //last segment of path was punctual
410       {
411         theEdge = TopoDS::Edge(myPaths(i)(myPaths(i).Length()-1));
412         theVertex = TopoDS::Vertex(theShape);
413       }
414       
415       if (EndVertices.Contains(theVertex))
416         continue;
417       const TopTools_ListOfShape& LE = VEmap.FindFromKey(theVertex);
418       TopTools_MapOfShape NextEdgeCandidates;
419       for (itl.Initialize(LE); itl.More(); itl.Next())
420       {
421         anEdge = TopoDS::Edge(itl.Value());
422         if (anEdge.IsSame(theEdge))
423           continue;
424         TopExp::Vertices(anEdge, V1, V2, Standard_True);
425         if (V1.IsSame(theVertex))
426           NextVertex = V2;
427         else
428         {
429           anEdge.Reverse();
430           NextVertex = V1;
431         }
432         if (!CurVertices.Contains(NextVertex))
433           NextEdgeCandidates.Add(anEdge);
434       }
435       if (!NextEdgeCandidates.IsEmpty())
436       {
437         if (NextEdgeCandidates.Extent() > 1)
438           myPaths(i).Append(theVertex); //punctual segment of path
439         else
440         {
441           TopTools_MapIteratorOfMapOfShape mapit(NextEdgeCandidates);
442           anEdge = TopoDS::Edge(mapit.Key());
443           myPaths(i).Append(anEdge);
444           NextVertex = TopExp::LastVertex(anEdge, Standard_True);
445           NextVertices.Append(NextVertex);
446         }
447       }
448     }
449     if (NextVertices.IsEmpty())
450       break;
451     for (itl.Initialize(NextVertices); itl.More(); itl.Next())
452       CurVertices.Add(itl.Value());
453     NextVertices.Clear();
454   }
455
456   //Temporary
457   /*
458   TopoDS_Compound aCompound, aCmp1;
459   BRep_Builder BB;
460   BB.MakeCompound(aCompound);
461   BB.MakeCompound(aCmp1);
462   for (i = 1; i <= myPaths.Length(); i++)
463   {
464     TopoDS_Compound aCmp;
465     BB.MakeCompound(aCmp);
466     for (j = 1; j <= myPaths(i).Length(); j++)
467       BB.Add(aCmp, myPaths(i)(j));
468     BB.Add(aCmp1, aCmp);
469   }
470   BB.Add(aCompound, aCmp1);
471          
472   myShape = aCompound;
473
474   Done();
475   return;
476   */
477   ////////////
478   
479   //Building of set of sections
480   Standard_Integer NbE = EdgeSeq.Length();
481   Standard_Integer NbPaths = myPaths.Length();
482   Standard_Integer NbVer = myPaths.Length();
483   if (myClosedSection)
484     NbVer++;
485   i = 1;
486   for (;;)
487   {
488     for (j = 1; j <= EdgeSeq.Length(); j++)
489       EdgeSeq(j).Nullify();
490
491     Standard_Boolean ToInsertVertex = Standard_False;
492     
493     for (j = 2; j <= NbVer; j++)
494     {
495       if (!EdgeSeq(j-1).IsNull())
496         continue;
497
498       //for the end of initial shape
499       if (myPaths(j-1).Length() < i)
500       {
501         TopoDS_Edge aE1 = TopoDS::Edge(myPaths(j-1)(i-1));
502         TopoDS_Shape LastVer = TopExp::LastVertex(aE1, Standard_True);
503         myPaths(j-1).Append(LastVer);
504       }
505       if (myPaths((j<=NbPaths)? j : 1).Length() < i)
506       {
507         TopoDS_Edge aE2 = TopoDS::Edge(myPaths((j<=NbPaths)? j : 1)(i-1));
508         TopoDS_Shape LastVer = TopExp::LastVertex(aE2, Standard_True);
509         myPaths((j<=NbPaths)? j : 1).Append(LastVer);
510       }
511       //////////////////////////////
512       
513       if (ToInsertVertex)
514       {
515         if (myPaths(j-1)(i).ShapeType() == TopAbs_EDGE)
516         {
517           TopoDS_Edge aE1 = TopoDS::Edge(myPaths(j-1)(i));
518           TopoDS_Shape fver = TopExp::FirstVertex(aE1, Standard_True);
519           myPaths(j-1).InsertBefore(i, fver);
520         }
521         if (myPaths((j<=NbPaths)? j : 1)(i).ShapeType() == TopAbs_EDGE)
522         {
523           TopoDS_Edge aE2 = TopoDS::Edge(myPaths((j<=NbPaths)? j : 1)(i));
524           TopoDS_Shape fver = TopExp::FirstVertex(aE2, Standard_True);
525           myPaths((j<=NbPaths)? j : 1).InsertBefore(i, fver);
526         }
527         ToInsertVertex = Standard_False;
528       }
529       
530       TopoDS_Edge E1, E2;
531       if (myPaths(j-1)(i).ShapeType() == TopAbs_EDGE)
532         E1 = TopoDS::Edge(myPaths(j-1)(i));
533       if (myPaths((j<=NbPaths)? j : 1)(i).ShapeType() == TopAbs_EDGE)
534         E2 = TopoDS::Edge(myPaths((j<=NbPaths)? j : 1)(i));
535       TopoDS_Edge E12 = TopoDS::Edge(SectionsEdges(i)(j-1));
536       //Find the face on which (E1 or E2) and E12 lie
537       TopoDS_Shape E1orE2 = (E1.IsNull())? E2 : E1;
538       if (E1orE2.IsNull()) //both E1 and E2 are vertices =>
539       {
540         EdgeSeq(j-1) = E12; // => proper edge is the edge of previous section between them
541         continue;
542       }
543       const TopTools_ListOfShape& LF = EFmap.FindFromKey(E1orE2);
544       TopoDS_Face theFace;
545       for (itl.Initialize(LF); itl.More(); itl.Next())
546       {
547         const TopoDS_Shape& aFace = itl.Value();
548         const TopTools_ListOfShape& LF2 = EFmap.FindFromKey(E12);
549         TopTools_ListIteratorOfListOfShape itl2(LF2);
550         for (; itl2.More(); itl2.Next())
551         {
552           const TopoDS_Shape& aFace2 = itl2.Value();
553           if (aFace.IsSame(aFace2))
554           {
555             theFace = TopoDS::Face(aFace);
556             break;
557           }
558         }
559         if (!theFace.IsNull())
560           break;
561       }
562       
563       TopoDS_Vertex PrevVertex = (E1.IsNull())? TopoDS::Vertex(myPaths(j-1)(i))
564         : TopExp::LastVertex(E1, Standard_True);
565       TopoDS_Vertex CurVertex = (E2.IsNull())? TopoDS::Vertex(myPaths((j<=NbPaths)? j : 1)(i))
566         : TopExp::LastVertex(E2, Standard_True);
567       
568       TopoDS_Edge ProperEdge;
569       const TopTools_ListOfShape& LE = VEmap.FindFromKey(PrevVertex);
570       //Temporary
571       //Standard_Integer LenList = LE.Extent();
572       ///////////
573       TopTools_IndexedMapOfShape EdgesOfTheFace;
574       TopExp::MapShapes(theFace, TopAbs_EDGE, EdgesOfTheFace);
575       for (itl.Initialize(LE); itl.More(); itl.Next())
576       {
577         anEdge = TopoDS::Edge(itl.Value());
578         TopExp::Vertices(anEdge, V1, V2);
579         if (((V1.IsSame(PrevVertex) && V2.IsSame(CurVertex)) ||
580              (V1.IsSame(CurVertex) && V2.IsSame(PrevVertex))) &&
581             EdgesOfTheFace.Contains(anEdge) && //this condition is for a section of two edges
582             !anEdge.IsSame(E1)) //the last condition is for torus-like shape
583         {
584           ProperEdge = anEdge;
585           break;
586         }
587       }
588       
589       if ((myPaths(j-1)(i)).ShapeType() == TopAbs_VERTEX &&
590           (myPaths((j<=NbPaths)? j : 1)(i)).ShapeType() == TopAbs_VERTEX)
591       {
592         EdgeSeq(j-1) = ProperEdge;
593         continue;
594       }
595
596       TopoDS_Vertex PrevPrevVer = (E1.IsNull())? PrevVertex
597         : TopExp::FirstVertex(E1, Standard_True);
598       TopoDS_Vertex PrevCurVer  = (E2.IsNull())? CurVertex
599         : TopExp::FirstVertex(E2, Standard_True);
600       if (ProperEdge.IsNull()) //no connection between these two vertices
601       {
602         //Find the face on which E1, E2 and E12 lie
603         //ToInsertVertex = Standard_False;
604         TopTools_ListOfShape ListOneFace;
605         ListOneFace.Append(theFace);
606
607         if (E1.IsNull() || E2.IsNull())
608         {
609           if (E1.IsNull())
610             E1 = TopoDS::Edge(myPaths(j-1)(i-1));
611           if (E2.IsNull())
612             E2 = TopoDS::Edge(myPaths((j<=NbPaths)? j : 1)(i-1));
613           Standard_Real fpar1, lpar1, fpar2, lpar2;
614           Standard_Real LastPar1, LastPar2;
615           Handle(Geom2d_Curve) PCurve1 = BRep_Tool::CurveOnSurface(E1, theFace, fpar1, lpar1);
616           Handle(Geom2d_Curve) PCurve2 = BRep_Tool::CurveOnSurface(E2, theFace, fpar2, lpar2);
617           if (E1.Orientation() == TopAbs_FORWARD)
618           { LastPar1 = lpar1; }
619           else
620           { LastPar1 = fpar1; }
621           if (E2.Orientation() == TopAbs_FORWARD)
622           { LastPar2 = lpar2; }
623           else
624           { LastPar2 = fpar2; }
625           gp_Pnt2d FirstPnt2d = PCurve1->Value(LastPar1);
626           gp_Pnt2d LastPnt2d  = PCurve2->Value(LastPar2);
627           Handle(Geom_Surface) theSurf = BRep_Tool::Surface(theFace);
628           Handle(Geom2d_Line) theLine = GCE2d_MakeLine(FirstPnt2d, LastPnt2d);
629           Standard_Real len_ne = FirstPnt2d.Distance(LastPnt2d);
630           TopoDS_Edge NewEdge = BRepLib_MakeEdge(theLine, theSurf,
631                                                  PrevVertex, CurVertex,
632                                                  0., len_ne);
633           BRepLib::BuildCurve3d(NewEdge);
634           EdgeSeq(j-1) = NewEdge;
635           EFmap.Add(NewEdge, ListOneFace);
636         }
637         else //E1 is edge
638         {
639           //Extract points 2d
640           Standard_Real fpar1, lpar1, fpar2, lpar2;
641           Standard_Real FirstPar1, LastPar1, FirstPar2, LastPar2;
642           Handle(Geom2d_Curve) PCurve1 = BRep_Tool::CurveOnSurface(E1, theFace, fpar1, lpar1);
643           Handle(Geom2d_Curve) PCurve2 = BRep_Tool::CurveOnSurface(E2, theFace, fpar2, lpar2);
644           if (E1.Orientation() == TopAbs_FORWARD)
645           { FirstPar1 = fpar1; LastPar1 = lpar1; }
646           else
647           { FirstPar1 = lpar1; LastPar1 = fpar1; }
648           if (E2.Orientation() == TopAbs_FORWARD)
649           { FirstPar2 = fpar2; LastPar2 = lpar2; }
650           else
651           { FirstPar2 = lpar2; LastPar2 = fpar2; }
652           gp_Pnt2d FirstPnt2d = PCurve1->Value(LastPar1);
653           gp_Pnt2d LastPnt2d  = PCurve2->Value(LastPar2);
654           Handle(Geom_Surface) theSurf = BRep_Tool::Surface(theFace);
655           Handle(Geom2d_Line) theLine = GCE2d_MakeLine(FirstPnt2d, LastPnt2d);
656           Standard_Real len_ne = FirstPnt2d.Distance(LastPnt2d);
657           TopoDS_Edge NewEdge = BRepLib_MakeEdge(theLine, theSurf,
658                                                  PrevVertex, CurVertex,
659                                                  0., len_ne);
660           BRepLib::BuildCurve3d(NewEdge);
661           gp_Pnt2d PrevFirstPnt2d = PCurve1->Value(FirstPar1);
662           gp_Pnt2d PrevLastPnt2d  = PCurve2->Value(FirstPar2);
663           Handle(Geom2d_Line) Line1 = GCE2d_MakeLine(PrevFirstPnt2d, LastPnt2d);
664           Handle(Geom2d_Line) Line2 = GCE2d_MakeLine(FirstPnt2d, PrevLastPnt2d);
665           Standard_Real len_ne1 = PrevFirstPnt2d.Distance(LastPnt2d);
666           TopoDS_Edge NewEdge1 = BRepLib_MakeEdge(Line1, theSurf,
667                                                   PrevPrevVer, CurVertex,
668                                                   0., len_ne1);
669           BRepLib::BuildCurve3d(NewEdge1);
670           Standard_Real len_ne2 = FirstPnt2d.Distance(PrevLastPnt2d);
671           TopoDS_Edge NewEdge2 = BRepLib_MakeEdge(Line2, theSurf,
672                                                   PrevVertex, PrevCurVer,
673                                                   0., len_ne2);
674           BRepLib::BuildCurve3d(NewEdge2);
675           Standard_Boolean good_ne  = IsValidEdge(NewEdge, theFace);
676           Standard_Boolean good_ne1 = IsValidEdge(NewEdge1, theFace);
677
678           GeomAbs_CurveType type_E1 = TypeOfEdge(E1);
679           GeomAbs_CurveType type_E2 = TypeOfEdge(E2);
680
681           Standard_Integer ChooseEdge = 0;
682           
683           if (!good_ne || type_E1 != type_E2)
684           {
685             if (type_E1 == type_E2) //!good_ne
686             {
687               if (good_ne1)
688                 ChooseEdge = 1;
689               else
690                 ChooseEdge = 2;
691             }
692             else //types are different
693             {
694               if (type_E1 == GeomAbs_Line)
695                 ChooseEdge = 1;
696               else if (type_E2 == GeomAbs_Line)
697                 ChooseEdge = 2;
698               else //to be developed later...
699               {}
700             }
701           }
702           
703           if (ChooseEdge == 0)
704           {
705             EdgeSeq(j-1) = NewEdge;
706             EFmap.Add(NewEdge, ListOneFace);
707           }
708           else if (ChooseEdge == 1)
709           {
710             EdgeSeq(j-1) = NewEdge1;
711             EFmap.Add(NewEdge1, ListOneFace);
712             for (k = 1; k < j-1; k++)
713               EdgeSeq(k).Nullify();
714             for (k = 1; k <= j-1; k++)
715             {
716               TopoDS_Edge aLastEdge = TopoDS::Edge(myPaths(k)(i));
717               TopoDS_Shape VertexAsEdge = TopExp::FirstVertex(aLastEdge, Standard_True);
718               myPaths(k).InsertBefore(i, VertexAsEdge);
719             }
720             j = 1; //start from beginning
721           }
722           else if (ChooseEdge == 2)
723           {
724             EdgeSeq(j-1) = NewEdge2;
725             EFmap.Add(NewEdge2, ListOneFace);
726             ToInsertVertex = Standard_True;
727           }
728         } //else //E1 is edge
729       } //if (ProperEdge.IsNull())
730       else //connecting edge exists
731       {
732         /*
733         if (ToInsertVertex)
734         {
735           myPaths(j-1).InsertBefore(i, PrevPrevVer);
736           myPaths((j<=NbPaths)? j : 1).InsertBefore(i, PrevCurVer);
737           EdgeSeq(j-1) = E12;
738         }
739         else
740         */
741           EdgeSeq(j-1) = ProperEdge;
742       }
743     } //for (j = 2; j <= NbVer; j++)
744     SectionsEdges.Append(EdgeSeq);
745
746     //check for exit from for(;;)
747     Standard_Integer NbEndEdges = 0;
748     for (j = 1; j <= EdgeSeq.Length(); j++)
749       if (EndEdges.Contains(EdgeSeq(j)))
750         NbEndEdges++;
751     if (NbEndEdges == NbE)
752       break;
753     
754     i++;
755   } //for (;;)
756   
757
758   //final phase: building of middle path
759   Standard_Integer NbSecFaces = SectionsEdges.Length();
760   TopTools_Array1OfShape SecFaces(1, NbSecFaces);
761   for (i = 1; i <= NbSecFaces; i++)
762   {
763     BRepLib_MakeWire MW;
764     for (j = 1; j <= NbE; j++)
765     {
766       anEdge = TopoDS::Edge(SectionsEdges(i)(j));
767       MW.Add(anEdge);
768     }
769     if (!myClosedSection)
770     {
771       TopExp::Vertices(MW.Wire(), V1, V2);
772       anEdge = BRepLib_MakeEdge(V2, V1);
773       MW.Add(anEdge);
774     }
775     TopoDS_Wire aWire = MW.Wire();
776     BRepLib_MakeFace MF(aWire, Standard_True); //Only plane
777     if (MF.IsDone())
778       SecFaces(i) = MF.Face();
779     else
780       SecFaces(i) = aWire;
781   }
782
783   TColgp_Array1OfPnt Centers(1, NbSecFaces);
784   for (i = 1; i <= NbSecFaces; i++)
785   {
786     GProp_GProps Properties;
787     if (SecFaces(i).ShapeType() == TopAbs_FACE)
788       BRepGProp::SurfaceProperties(SecFaces(i), Properties);
789     else //wire
790       BRepGProp::LinearProperties(SecFaces(i), Properties);
791       
792     Centers(i) = Properties.CentreOfMass();
793   }
794
795   TopTools_Array1OfShape MidEdges(1, NbSecFaces-1);
796   Standard_Real LinTol = 1.e-5;
797   Standard_Real AngTol = 1.e-7;
798   gp_Pnt Pnt1, Pnt2;
799   for (i = 1; i < NbSecFaces; i++)
800   {
801     GeomAbs_CurveType TypeOfMidEdge = GeomAbs_OtherCurve;
802     for (j = 1; j <= myPaths.Length(); j++)
803     {
804       const TopoDS_Shape& aShape = myPaths(j)(i);
805       if (aShape.ShapeType() == TopAbs_VERTEX)
806       {
807         TypeOfMidEdge = GeomAbs_OtherCurve;
808         break;
809       }
810       anEdge = TopoDS::Edge(aShape);
811       GeomAbs_CurveType aType = TypeOfEdge(anEdge);
812       if (j == 1)
813         TypeOfMidEdge = aType;
814       else
815       {
816         if (aType != TypeOfMidEdge)
817         {
818           TypeOfMidEdge = GeomAbs_OtherCurve;
819           break;
820         }
821       }
822     }
823     if (TypeOfMidEdge == GeomAbs_Line)
824       MidEdges(i) = BRepLib_MakeEdge(Centers(i), Centers(i+1));
825     else if (TypeOfMidEdge == GeomAbs_Circle)
826     {
827       gp_Ax1 theAxis;
828       gp_Dir theDir1, theDir2;
829       Standard_Real theAngle = 0.;
830       gp_Vec theTangent;
831       Standard_Boolean SimilarArcs = Standard_True;
832       for (j = 1; j <= myPaths.Length(); j++)
833       {
834         anEdge = TopoDS::Edge(myPaths(j)(i));
835         Standard_Real fpar, lpar;
836         Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, fpar, lpar);
837         if (aCurve->IsInstance(STANDARD_TYPE(Geom_TrimmedCurve)))
838           aCurve = ((Handle(Geom_TrimmedCurve)&) aCurve)->BasisCurve();
839         Pnt1 = aCurve->Value(fpar);
840         Pnt2 = aCurve->Value(lpar);
841         Handle(Geom_Circle) aCircle = Handle(Geom_Circle)::DownCast(aCurve);
842         gp_Circ aCirc = aCircle->Circ();
843         if (j == 1)
844         {
845           theAxis = aCirc.Axis();
846           theDir1 = gp_Vec(aCirc.Location(), Pnt1);
847           theDir2 = gp_Vec(aCirc.Location(), Pnt2);
848           theAngle = lpar - fpar;
849           Standard_Real theParam = (anEdge.Orientation() == TopAbs_FORWARD)?
850             fpar : lpar;
851           aCurve->D1(theParam, Pnt1, theTangent);
852           if (anEdge.Orientation() == TopAbs_REVERSED)
853             theTangent.Reverse();
854         }
855         else
856         {
857           gp_Ax1 anAxis = aCirc.Axis();
858           gp_Lin aLin(anAxis);
859           if (!aLin.Contains(theAxis.Location(), LinTol) ||
860               !anAxis.IsParallel(theAxis, AngTol))
861           {
862             SimilarArcs = Standard_False;
863             break;
864           }
865           gp_Dir aDir1 = gp_Vec(aCirc.Location(), Pnt1);
866           gp_Dir aDir2 = gp_Vec(aCirc.Location(), Pnt2);
867           if (!((aDir1.IsEqual(theDir1, AngTol) && aDir2.IsEqual(theDir2, AngTol)) ||
868                 (aDir1.IsEqual(theDir2, AngTol) && aDir2.IsEqual(theDir1, AngTol))))
869           {
870             SimilarArcs = Standard_False;
871             break;
872           }
873         }
874       }
875       if (SimilarArcs)
876       {
877         gp_XYZ AxisLoc = theAxis.Location().XYZ();
878         gp_XYZ AxisDir = theAxis.Direction().XYZ();
879         Standard_Real Parameter = (Centers(i).XYZ() - AxisLoc) * AxisDir;
880         gp_Pnt theCenterOfCirc(AxisLoc + Parameter*AxisDir);
881         
882         gp_Vec Vec1(theCenterOfCirc, Centers(i));
883         gp_Vec Vec2(theCenterOfCirc, Centers(i+1));
884         /*
885         gp_Dir VecProd = Vec1 ^ Vec2;
886         if (theAxis.Direction() * VecProd < 0.)
887           theAxis.Reverse();
888         */
889         
890         Standard_Real anAngle = Vec1.AngleWithRef(Vec2, theAxis.Direction());
891         if (anAngle < 0.)
892           anAngle += 2.*M_PI;
893         if (Abs(anAngle - theAngle) > AngTol)
894           theAxis.Reverse();
895         gp_Ax2 theAx2(theCenterOfCirc, theAxis.Direction(), Vec1);
896         Handle(Geom_Circle) theCircle = GC_MakeCircle(theAx2, Vec1.Magnitude());
897         gp_Vec aTangent;
898         theCircle->D1( 0., Pnt1, aTangent );
899         if (aTangent * theTangent < 0.)
900         {
901           theAxis.Reverse();
902           theAx2 = gp_Ax2(theCenterOfCirc, theAxis.Direction(), Vec1);
903           theCircle = GC_MakeCircle(theAx2, Vec1.Magnitude());
904         }
905         BRepLib_MakeEdge aME (theCircle, 0., theAngle);
906         aME.Build();
907
908         MidEdges(i) = aME.IsDone() ? 
909           aME.Shape() : 
910           TopoDS_Edge();
911       }
912     }
913   }
914
915   //Build missed edges
916   for (i = 1; i < NbSecFaces; i++)
917   {
918     if (MidEdges(i).IsNull())
919     {
920       for (j = i+1; j < NbSecFaces; j++)
921       {
922         if (!MidEdges(j).IsNull())
923           break;
924       }
925       //from i to j-1 all edges are null
926       Handle(TColgp_HArray1OfPnt) thePoints = new TColgp_HArray1OfPnt(1, j-i+1);
927       TColgp_Array1OfVec theTangents(1, j-i+1);
928       Handle(TColStd_HArray1OfBoolean) theFlags = new TColStd_HArray1OfBoolean(1, j-i+1);
929       for (k = i; k <= j; k++)
930         thePoints->SetValue(k-i+1, Centers(k));
931       for (k = i; k <= j; k++)
932       {
933         TColgp_SequenceOfPnt PntSeq;
934         for (Standard_Integer indp = 1; indp <= myPaths.Length(); indp++)
935         {
936           gp_Vec aTangent;
937           if (k == i)
938           {
939             if (myPaths(indp)(k).ShapeType() == TopAbs_VERTEX)
940               continue;
941             aTangent = TangentOfEdge(myPaths(indp)(k), Standard_True); //at begin
942           }
943           else if (k == j)
944           {
945             if (myPaths(indp)(k-1).ShapeType() == TopAbs_VERTEX)
946               continue;
947             aTangent = TangentOfEdge(myPaths(indp)(k-1), Standard_False); //at end
948           }
949           else
950           {
951             if (myPaths(indp)(k-1).ShapeType() == TopAbs_VERTEX ||
952                 myPaths(indp)(k).ShapeType() == TopAbs_VERTEX)
953               continue;
954             gp_Vec Tangent1 = TangentOfEdge(myPaths(indp)(k-1), Standard_False); //at end
955             gp_Vec Tangent2 = TangentOfEdge(myPaths(indp)(k), Standard_True); //at begin
956             aTangent = Tangent1 + Tangent2;
957           }
958           aTangent.Normalize();
959           gp_Pnt aPnt(aTangent.XYZ());
960           PntSeq.Append(aPnt);
961         }
962         TColgp_Array1OfPnt PntArray(1, PntSeq.Length());
963         for (Standard_Integer ip = 1; ip <= PntSeq.Length(); ip++)
964           PntArray(ip) = PntSeq(ip);
965         gp_Pnt theBary;
966         gp_Dir xdir, ydir;
967         Standard_Real xgap, ygap, zgap;
968         GeomLib::Inertia(PntArray, theBary, xdir, ydir, xgap, ygap, zgap);
969         gp_Vec theTangent(theBary.XYZ());
970         theTangents(k-i+1) = theTangent;
971       }
972       theFlags->Init(Standard_True);
973
974       GeomAPI_Interpolate Interpol(thePoints, Standard_False, LinTol);
975       Interpol.Load(theTangents, theFlags);
976       Interpol.Perform();
977       if (!Interpol.IsDone())
978       {
979         cout<<endl<<"Interpolation failed"<<endl;
980       }
981       Handle(Geom_Curve) InterCurve = Interpol.Curve();
982       MidEdges(i) = BRepLib_MakeEdge(InterCurve);
983       i = j;
984     }
985   }  
986
987   BRepLib_MakeWire MakeFinalWire;
988   for (i = 1; i < NbSecFaces; i++)
989     if (!MidEdges(i).IsNull())
990       MakeFinalWire.Add(TopoDS::Edge(MidEdges(i)));
991
992   TopoDS_Wire FinalWire = MakeFinalWire.Wire();
993   myShape = MakeFinalWire.Wire();
994   
995   //Temporary
996   /*
997   TopoDS_Compound aCompound, aCmp1, aCmp2;
998   BRep_Builder BB;
999   BB.MakeCompound(aCompound);
1000   BB.MakeCompound(aCmp1);
1001   BB.MakeCompound(aCmp2);
1002   for (i = 1; i <= myPaths.Length(); i++)
1003   {
1004     TopoDS_Compound aCmp;
1005     BB.MakeCompound(aCmp);
1006     for (j = 1; j <= myPaths(i).Length(); j++)
1007       BB.Add(aCmp, myPaths(i)(j));
1008     BB.Add(aCmp1, aCmp);
1009   }
1010   for (i = 1; i <= SectionsEdges.Length(); i++)
1011   {
1012     TopoDS_Wire aWire;
1013     BB.MakeWire(aWire);
1014     for (j = 1; j <= SectionsEdges(i).Length(); j++)
1015       BB.Add(aWire, SectionsEdges(i)(j));
1016     BB.Add(aCmp2, aWire);
1017   }
1018   BB.Add(aCompound, aCmp1);
1019   BB.Add(aCompound, aCmp2);
1020   BB.Add(aCompound, FinalWire);
1021          
1022   myShape = aCompound;
1023   */
1024   ////////////
1025
1026   Done();
1027 }