Salome HOME
Merge branch 'master' into V7_5_BR
[modules/geom.git] / src / GEOMImpl / GEOMImpl_HealingDriver.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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
23 #include <Standard_Stream.hxx>
24
25 #include <GEOMImpl_HealingDriver.hxx>
26 #include <GEOMImpl_Types.hxx>
27 #include <GEOMImpl_IHealing.hxx>
28 #include <GEOM_Function.hxx>
29
30 #include <GEOMImpl_GlueDriver.hxx>
31 #include <GEOMImpl_ShapeDriver.hxx>
32
33 #include <GEOMUtils.hxx>
34 #include <GEOMAlgo_RemoverWebs.hxx>
35
36 #include <ShHealOper_ShapeProcess.hxx>
37 #include <ShHealOper_RemoveFace.hxx>
38 #include <ShHealOper_CloseContour.hxx>
39 #include <ShHealOper_RemoveInternalWires.hxx>
40 #include <ShHealOper_FillHoles.hxx>
41 #include <ShHealOper_Sewing.hxx>
42 #include <ShHealOper_EdgeDivide.hxx>
43 #include <ShHealOper_ChangeOrientation.hxx>
44
45 #include <TNaming_CopyShape.hxx>
46
47 #include <ShapeFix_ShapeTolerance.hxx>
48 #include <ShapeFix_Shape.hxx>
49
50 #include <BRep_Builder.hxx>
51 #include <BRepAdaptor_Curve.hxx>
52 #include <BRepCheck_Analyzer.hxx>
53 #include <BRepTools_WireExplorer.hxx>
54
55 #include <TopExp.hxx>
56 #include <TopExp_Explorer.hxx>
57 #include <TopoDS.hxx>
58 #include <TopoDS_Iterator.hxx>
59 #include <TopTools_IndexedMapOfShape.hxx>
60 #include <TopTools_ListOfShape.hxx>
61 #include <TopTools_ListIteratorOfListOfShape.hxx>
62
63 #include <TColStd_IndexedDataMapOfTransientTransient.hxx>
64
65 #include <Precision.hxx>
66
67 #include <StdFail_NotDone.hxx>
68 #include <Standard_NullObject.hxx>
69
70 //=======================================================================
71 //function :  raiseNotDoneExeption
72 //purpose  :  global function: forms error message and raises exeption
73 //=======================================================================
74 void raiseNotDoneExeption( const int theErrorStatus )
75 {
76   switch ( theErrorStatus )
77   {
78   case ShHealOper_NotError:           StdFail_NotDone::Raise( "ShHealOper_NotError_msg" );
79   case ShHealOper_InvalidParameters:  StdFail_NotDone::Raise( "ShHealOper_InvalidParameters_msg" );
80   case ShHealOper_ErrorExecution:
81   default:                            StdFail_NotDone::Raise( "ShHealOper_ErrorExecution_msg" );
82   }
83 }
84
85 //=======================================================================
86 //function : GetID
87 //purpose  :
88 //=======================================================================
89 const Standard_GUID& GEOMImpl_HealingDriver::GetID()
90 {
91   static Standard_GUID aHealingDriver("FF1BBB61-5D14-4df2-980B-3A668264EA16");
92   return aHealingDriver;
93 }
94
95 //=======================================================================
96 //function : GEOMImpl_HealingDriver
97 //purpose  :
98 //=======================================================================
99 GEOMImpl_HealingDriver::GEOMImpl_HealingDriver()
100 {
101 }
102
103 //=======================================================================
104 //function : Execute
105 //purpose  :
106 //=======================================================================
107 Standard_Integer GEOMImpl_HealingDriver::Execute(TFunction_Logbook& log) const
108 {
109   if (Label().IsNull()) return 0;
110   Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
111
112   if (aFunction.IsNull()) return 0;
113
114   GEOMImpl_IHealing HI (aFunction);
115   Standard_Integer aType = aFunction->GetType();
116   Handle(GEOM_Function) anOriginalFunction = HI.GetOriginal();
117   if (anOriginalFunction.IsNull()) return 0;
118   TopoDS_Shape aShape, anOriginalShape = anOriginalFunction->GetValue();
119   if (anOriginalShape.IsNull()) return 0;
120
121   switch (aType)
122   {
123   case SHAPE_PROCESS:
124     ShapeProcess(&HI, anOriginalShape, aShape);
125     break;
126   case SUPPRESS_FACES:
127     SuppressFaces(&HI, anOriginalShape, aShape);
128     break;
129   case CLOSE_CONTOUR:
130     CloseContour(&HI, anOriginalShape, aShape);
131     break;
132   case REMOVE_INT_WIRES:
133     RemoveIntWires(&HI, anOriginalShape, aShape);
134     break;
135   case FILL_HOLES:
136     RemoveHoles(&HI, anOriginalShape, aShape);
137     break;
138   case SEWING:
139     Sew(&HI, anOriginalShape, aShape, false);
140     break;
141   case SEWING_NON_MANIFOLD:
142     Sew(&HI, anOriginalShape, aShape, true);
143     break;
144   case REMOVE_INTERNAL_FACES:
145     RemoveInternalFaces(anOriginalShape, aShape);
146     break;
147   case DIVIDE_EDGE:
148     AddPointOnEdge(&HI, anOriginalShape, aShape);
149     break;
150   case CHANGE_ORIENTATION:
151     ChangeOrientation(&HI, anOriginalShape, aShape);
152     break;
153   case LIMIT_TOLERANCE:
154     LimitTolerance(&HI, anOriginalShape, aShape);
155     break;
156   case FUSE_COLLINEAR_EDGES:
157     {
158       Handle(TColStd_HSequenceOfTransient) aVerts = HI.GetShapes();
159       FuseCollinearEdges(anOriginalShape, aVerts, aShape);
160     }
161     break;
162   default:
163     return 0;
164   }
165
166   if (aShape.IsNull())
167     raiseNotDoneExeption( ShHealOper_ErrorExecution );
168
169   aFunction->SetValue(aShape);
170
171   log.SetTouched(Label());
172   return 1;
173 }
174
175 //=======================================================================
176 //function :  ShapeProcess
177 //purpose  :
178 //=======================================================================
179 Standard_Boolean GEOMImpl_HealingDriver::ShapeProcess (GEOMImpl_IHealing* theHI,
180                                                        const TopoDS_Shape& theOriginalShape,
181                                                        TopoDS_Shape& theOutShape) const
182 {
183   Handle(TColStd_HArray1OfExtendedString) anOperators = theHI->GetOperators();
184   Handle(TColStd_HArray1OfExtendedString) aParams = theHI->GetParameters();
185   Handle(TColStd_HArray1OfExtendedString) aValues = theHI->GetValues();
186
187   if (anOperators.IsNull() || anOperators->Length() <= 0)
188     return Standard_False;
189
190   Standard_Integer nbParams = 0, nbValues = 0;
191   if (!aParams.IsNull()) {
192     nbParams = aParams->Length();
193   }
194   if (!aValues.IsNull()) {
195     nbValues = aValues->Length();
196   }
197   if (nbParams != nbValues)
198     return Standard_False;
199
200   ShHealOper_ShapeProcess aHealer;
201   TColStd_SequenceOfAsciiString anOperatorsAS, aParamsAS, aValuesAS;
202   int i;
203   for (i = 1; i <= anOperators->Length(); i++)
204     anOperatorsAS.Append(TCollection_AsciiString(anOperators->Value(i)));
205
206   aHealer.SetOperators(anOperatorsAS);
207
208   for (i = 1; i <= nbParams; i++) {
209     aHealer.SetParameter(TCollection_AsciiString(aParams->Value(i)),
210                          TCollection_AsciiString(aValues->Value(i)));
211   }
212
213   aHealer.Perform(theOriginalShape, theOutShape);
214
215   if (!aHealer.isDone())
216     raiseNotDoneExeption( ShHealOper_NotError );
217
218   return Standard_True;
219 }
220
221 //=======================================================================
222 //function :  SupressFaces
223 //purpose  :
224 //=======================================================================
225 void SuppressFacesRec (const TopTools_SequenceOfShape& theShapesFaces,
226                        const TopoDS_Shape&             theOriginalShape,
227                        TopoDS_Shape&                   theOutShape)
228 {
229   if ((theOriginalShape.ShapeType() != TopAbs_COMPOUND &&
230        theOriginalShape.ShapeType() != TopAbs_COMPSOLID))
231   {
232     ShHealOper_RemoveFace aHealer (theOriginalShape);
233     Standard_Boolean aResult = aHealer.Perform(theShapesFaces);
234
235     if (aResult)
236       theOutShape = aHealer.GetResultShape();
237     else
238       raiseNotDoneExeption(aHealer.GetErrorStatus());
239   }
240   else
241   {
242     BRep_Builder BB;
243     TopoDS_Compound CC;
244     BB.MakeCompound(CC);
245
246     TopTools_MapOfShape mapShape;
247     TopoDS_Iterator It (theOriginalShape, Standard_True, Standard_True);
248
249     for (; It.More(); It.Next()) {
250       TopoDS_Shape aShape_i = It.Value();
251       if (mapShape.Add(aShape_i)) {
252         // check, if current shape contains at least one of faces to be removed
253         bool isFound = false;
254         TopTools_IndexedMapOfShape aShapes_i;
255         TopExp::MapShapes(aShape_i, aShapes_i);
256         for (int i = 1; i <= theShapesFaces.Length() && !isFound; i++) {
257           const TopoDS_Shape& aFace_i = theShapesFaces.Value(i);
258           if (aShapes_i.Contains(aFace_i)) isFound = true;
259         }
260         if (isFound) {
261           TopoDS_Shape anOutSh_i;
262           SuppressFacesRec(theShapesFaces, aShape_i, anOutSh_i);
263           if ( !anOutSh_i.IsNull() )
264             BB.Add(CC, anOutSh_i);
265         }
266         else {
267           // nothing to do
268           BB.Add(CC, aShape_i);
269         }
270       }
271     }
272     theOutShape = CC;
273   }
274 }
275
276 Standard_Boolean GEOMImpl_HealingDriver::SuppressFaces (GEOMImpl_IHealing* theHI,
277                                                         const TopoDS_Shape& theOriginalShape,
278                                                         TopoDS_Shape& theOutShape) const
279 {
280   Handle(TColStd_HArray1OfInteger) aFaces = theHI->GetFaces();
281
282   Standard_Boolean aResult = Standard_False;
283
284   if (aFaces.IsNull()) {
285     ShHealOper_RemoveFace aHealer (theOriginalShape);
286     aResult = aHealer.Perform();
287
288     if (aResult)
289       theOutShape = aHealer.GetResultShape();
290     else
291       raiseNotDoneExeption(aHealer.GetErrorStatus());
292   }
293   else {
294     TopTools_SequenceOfShape aShapesFaces;
295     TopTools_IndexedMapOfShape aShapes;
296     TopExp::MapShapes(theOriginalShape, aShapes);
297     for (int i = 1; i <= aFaces->Length(); i++) {
298       int indexOfFace = aFaces->Value(i);
299       TopoDS_Shape aFace = aShapes.FindKey(indexOfFace);
300       aShapesFaces.Append(aFace);
301     }
302     SuppressFacesRec(aShapesFaces, theOriginalShape, theOutShape);
303     if ((theOriginalShape.ShapeType() == TopAbs_COMPOUND ||
304          theOriginalShape.ShapeType() == TopAbs_COMPSOLID)) {
305       TopoDS_Shape aSh = theOutShape;
306       theOutShape = GEOMImpl_GlueDriver::GlueFaces(aSh, Precision::Confusion(), Standard_True);
307     }
308   }
309
310   return Standard_True;
311 }
312
313 //=======================================================================
314 //function :  CloseContour
315 //purpose  :
316 //=======================================================================
317 Standard_Boolean GEOMImpl_HealingDriver::CloseContour (GEOMImpl_IHealing* theHI,
318                                                        const TopoDS_Shape& theOriginalShape,
319                                                        TopoDS_Shape& theOutShape) const
320 {
321   Standard_Boolean isByVertex = theHI->GetIsCommonVertex();
322   Handle(TColStd_HArray1OfInteger) aWires = theHI->GetWires();
323
324   ShHealOper_CloseContour aHealer (theOriginalShape);
325
326   Standard_Boolean aResult = Standard_False;
327   if ( aWires.IsNull() ) {
328     if ( theOriginalShape.ShapeType() == TopAbs_WIRE )
329       aResult = aHealer.Perform(TopoDS::Wire(theOriginalShape), isByVertex, !isByVertex);
330   }
331   else {
332     TopTools_SequenceOfShape aShapesWires;
333     TopTools_IndexedMapOfShape aShapes;
334     TopExp::MapShapes(theOriginalShape, aShapes);
335     for (int i = 1; i <= aWires->Length(); i++) {
336       int indexOfWire = aWires->Value(i);
337       TopoDS_Shape aWire = aShapes.FindKey(indexOfWire);
338       aShapesWires.Append(aWire);
339     }
340
341     aResult = aHealer.Perform( aShapesWires, isByVertex, !isByVertex );
342   }
343
344   if (aResult)
345     theOutShape = aHealer.GetResultShape();
346   else
347     raiseNotDoneExeption( aHealer.GetErrorStatus() );
348
349   return aResult;
350 }
351
352 //=======================================================================
353 //function :  RemoveIntWires
354 //purpose  :
355 //=======================================================================
356 Standard_Boolean GEOMImpl_HealingDriver::RemoveIntWires (GEOMImpl_IHealing* theHI,
357                                                          const TopoDS_Shape& theOriginalShape,
358                                                          TopoDS_Shape& theOutShape) const
359 {
360   Handle(TColStd_HArray1OfInteger) aWires = theHI->GetWires();
361
362   ShHealOper_RemoveInternalWires aHealer(theOriginalShape);
363
364   Standard_Boolean aResult = Standard_False;
365   if (aWires.IsNull()) { // remove all faces
366     aResult = aHealer.Remove();
367   } else {
368     TopTools_SequenceOfShape aShapesWires;
369     TopTools_IndexedMapOfShape aShapes;
370     TopExp::MapShapes(theOriginalShape, aShapes);
371     for (int i = 1; i <= aWires->Length(); i++) {
372       int indexOfWire = aWires->Value(i);
373       TopoDS_Shape aWire = aShapes.FindKey(indexOfWire);
374       aShapesWires.Append(aWire);
375     }
376
377     aResult = aHealer.Remove(aShapesWires);
378   }
379
380   if (aResult)
381     theOutShape = aHealer.GetResultShape();
382   else
383     raiseNotDoneExeption( aHealer.GetErrorStatus() );
384
385   return aResult;
386 }
387
388 //=======================================================================
389 //function :  RemoveHoles
390 //purpose  :
391 //=======================================================================
392 Standard_Boolean GEOMImpl_HealingDriver::RemoveHoles (GEOMImpl_IHealing* theHI,
393                                                       const TopoDS_Shape& theOriginalShape,
394                                                       TopoDS_Shape& theOutShape) const
395 {
396   Handle(TColStd_HArray1OfInteger) aWires = theHI->GetWires();
397
398   ShHealOper_FillHoles aHealer (theOriginalShape);
399
400   Standard_Boolean aResult = Standard_False;
401   if (aWires.IsNull()) { // remove all faces
402     aResult = aHealer.Fill();
403   } else {
404     TopTools_SequenceOfShape aShapesWires;
405     TopTools_IndexedMapOfShape aShapes;
406     TopExp::MapShapes(theOriginalShape, aShapes);
407     for (int i = 1; i <= aWires->Length(); i++) {
408       int indexOfWire = aWires->Value(i);
409       TopoDS_Shape aWire = aShapes.FindKey(indexOfWire);
410       aShapesWires.Append(aWire);
411     }
412
413     aResult = aHealer.Fill(aShapesWires);
414   }
415
416   if (aResult)
417     theOutShape = aHealer.GetResultShape();
418   else
419     raiseNotDoneExeption( aHealer.GetErrorStatus() );
420
421   return aResult;
422 }
423
424 //=======================================================================
425 //function :  Sew
426 //purpose  :
427 //=======================================================================
428 Standard_Boolean GEOMImpl_HealingDriver::Sew (GEOMImpl_IHealing* theHI,
429                                               const TopoDS_Shape& theOriginalShape,
430                                               TopoDS_Shape& theOutShape,
431                                               Standard_Boolean isAllowNonManifold) const
432 {
433   Standard_Real aTol = theHI->GetTolerance();
434
435   ShHealOper_Sewing aHealer (theOriginalShape, aTol);
436
437   // Set non-manifold mode.
438   aHealer.SetNonManifoldMode(isAllowNonManifold);
439
440   Standard_Boolean aResult = aHealer.Perform();
441
442   if (aResult)
443     theOutShape = aHealer.GetResultShape();
444   else
445     raiseNotDoneExeption( aHealer.GetErrorStatus() );
446
447   return aResult;
448 }
449
450 //=======================================================================
451 //function : RemoveInternalFaces
452 //purpose  :
453 //=======================================================================
454 Standard_Boolean GEOMImpl_HealingDriver::RemoveInternalFaces (const TopoDS_Shape& theOriginalShape,
455                                                               TopoDS_Shape& theOutShape) const
456 {
457   GEOMAlgo_RemoverWebs aTool;
458   aTool.SetShape(theOriginalShape);
459   aTool.Perform();
460
461   if (aTool.ErrorStatus() == 0) { // OK
462     theOutShape = aTool.Result();
463
464     // as GEOMAlgo_RemoverWebs always produces compound, lets simplify it
465     // for the case, if it contains only one sub-shape
466     TopTools_ListOfShape listShapeRes;
467     GEOMUtils::AddSimpleShapes(theOutShape, listShapeRes);
468     if (listShapeRes.Extent() == 1) {
469       theOutShape = listShapeRes.First();
470     }
471   }
472   else if (aTool.ErrorStatus() == 11) // invalid argument (contains non-solids), do nothing
473     theOutShape = theOriginalShape;
474   else // error
475     StdFail_NotDone::Raise("GEOMAlgo_RemoverWebs failed!");
476
477   return Standard_True;
478 }
479
480 //=======================================================================
481 //function :  AddPointOnEdge
482 //purpose  :
483 //=======================================================================
484 Standard_Boolean GEOMImpl_HealingDriver::AddPointOnEdge (GEOMImpl_IHealing* theHI,
485                                                          const TopoDS_Shape& theOriginalShape,
486                                                          TopoDS_Shape& theOutShape) const
487 {
488   Standard_Boolean isByParameter = theHI->GetIsByParameter();
489   Standard_Integer anIndex = theHI->GetIndex();
490   Standard_Real aValue = theHI->GetDevideEdgeValue();
491
492   ShHealOper_EdgeDivide aHealer (theOriginalShape);
493
494   Standard_Boolean aResult = Standard_False;
495   if (anIndex == -1) { // apply algorythm for the whole shape which is EDGE
496     if (theOriginalShape.ShapeType() == TopAbs_EDGE)
497       aResult = aHealer.Perform(TopoDS::Edge(theOriginalShape), aValue, isByParameter);
498   } else {
499     TopTools_IndexedMapOfShape aShapes;
500     TopExp::MapShapes(theOriginalShape, aShapes);
501     TopoDS_Shape aEdgeShape = aShapes.FindKey(anIndex);
502     if (aEdgeShape.ShapeType() == TopAbs_EDGE)
503       aResult = aHealer.Perform(TopoDS::Edge(aEdgeShape), aValue, isByParameter);
504   }
505
506   if (aResult)
507     theOutShape = aHealer.GetResultShape();
508   else
509     raiseNotDoneExeption( aHealer.GetErrorStatus() );
510
511   return aResult;
512 }
513
514
515 //=======================================================================
516 //function :  ChangeOrientation
517 //purpose  :
518 //=======================================================================
519 Standard_Boolean GEOMImpl_HealingDriver::ChangeOrientation (GEOMImpl_IHealing* theHI,
520                                                             const TopoDS_Shape& theOriginalShape,
521                                                             TopoDS_Shape& theOutShape) const
522 {
523   ShHealOper_ChangeOrientation aHealer (theOriginalShape);
524
525   Standard_Boolean aResult = aHealer.Perform();
526
527   if (aResult)
528     theOutShape = aHealer.GetResultShape();
529   else
530     raiseNotDoneExeption( aHealer.GetErrorStatus() );
531
532   return aResult;
533 }
534
535 //=======================================================================
536 //function : LimitTolerance
537 //purpose  :
538 //=======================================================================
539 void GEOMImpl_HealingDriver::LimitTolerance (GEOMImpl_IHealing* theHI,
540                                              const TopoDS_Shape& theOriginalShape,
541                                              TopoDS_Shape& theOutShape) const
542 {
543   Standard_Real aTol = theHI->GetTolerance();
544   TopAbs_ShapeEnum aType = theHI->GetType();
545
546   if (aTol < Precision::Confusion())
547     aTol = Precision::Confusion();
548
549   // 1. Make a copy to prevent the original shape changes.
550   TopoDS_Shape aShapeCopy;
551   TColStd_IndexedDataMapOfTransientTransient aMapTShapes;
552   TNaming_CopyShape::CopyTool(theOriginalShape, aMapTShapes, aShapeCopy);
553
554   // 2. Limit tolerance.
555   ShapeFix_ShapeTolerance aSFT;
556   aSFT.LimitTolerance(aShapeCopy, aTol, aTol, aType);
557
558   // 3. Fix obtained shape.
559   Handle(ShapeFix_Shape) aSfs = new ShapeFix_Shape (aShapeCopy);
560   aSfs->Perform();
561   theOutShape = aSfs->Shape();
562
563   BRepCheck_Analyzer ana (theOutShape, Standard_True);
564   if (!ana.IsValid())
565     StdFail_NotDone::Raise("Non valid shape result");
566 }
567
568 //=======================================================================
569 //function : FuseCollinearEdges
570 //purpose  :
571 //=======================================================================
572 void GEOMImpl_HealingDriver::FuseCollinearEdges (const TopoDS_Shape& theOriginalShape,
573                                                  const Handle(TColStd_HSequenceOfTransient)& aVerts,
574                                                  TopoDS_Shape& theOutShape)
575 {
576   if (theOriginalShape.ShapeType() != TopAbs_WIRE)
577     Standard_TypeMismatch::Raise("Not a wire is given");
578
579   // Tolerances
580   Standard_Real AngTol = Precision::Angular();
581   Standard_Real LinTol = Precision::Confusion();
582   Standard_Real tol;
583   for (TopExp_Explorer ExV (theOriginalShape, TopAbs_VERTEX); ExV.More(); ExV.Next()) {
584     TopoDS_Vertex Vertex = TopoDS::Vertex(ExV.Current());
585     tol = BRep_Tool::Tolerance(Vertex);
586     if (tol > LinTol)
587       LinTol = tol;
588   }
589
590   // 1. Make a copy to prevent the original shape changes.
591   TopoDS_Shape aWire;
592   TColStd_IndexedDataMapOfTransientTransient aMapTShapes;
593   TNaming_CopyShape::CopyTool(theOriginalShape, aMapTShapes, aWire);
594   TopoDS_Wire theWire = TopoDS::Wire(aWire);
595
596   // 2. Sub-shapes of the wire
597   TopTools_MapOfShape aMapToRemove;
598
599   TopTools_IndexedMapOfShape anOldIndices;
600   TopExp::MapShapes(theOriginalShape, anOldIndices);
601
602   TopTools_IndexedMapOfShape aNewIndices;
603   TopExp::MapShapes(theWire, aNewIndices);
604
605   // 3. Collect vertices of the wire, same or equal to the given vertices
606   bool removeAll = false;
607   if (aVerts.IsNull() || aVerts->Length() < 1)
608     removeAll = true;
609
610   if (!removeAll) {
611     for (unsigned int ind = 1; ind <= aVerts->Length(); ind++) {
612       Handle(GEOM_Function) aRefShape = Handle(GEOM_Function)::DownCast(aVerts->Value(ind));
613       TopoDS_Shape aShape_i = aRefShape->GetValue();
614       if (aShape_i.IsNull())
615         Standard_NullObject::Raise("Null vertex given");
616       if (aShape_i.ShapeType() != TopAbs_VERTEX)
617         Standard_TypeMismatch::Raise("Shape to suppress is not a vertex");
618
619       // find vertices shared with the initial wire
620       if (anOldIndices.Contains(aShape_i)) {
621         aMapToRemove.Add(aNewIndices.FindKey(anOldIndices.FindIndex(aShape_i)));
622       } else {
623         // try to find by coords in the new wire
624         TopoDS_Vertex aVert = TopoDS::Vertex(aShape_i);
625         gp_Pnt aP = BRep_Tool::Pnt(aVert);
626
627         bool isFound = false;
628         TopTools_MapOfShape mapShape;
629         TopExp_Explorer exp (theWire, TopAbs_VERTEX);
630         for (; exp.More() && !isFound; exp.Next()) {
631           if (mapShape.Add(exp.Current())) {
632             TopoDS_Vertex aVi = TopoDS::Vertex(exp.Current());
633             gp_Pnt aPi = BRep_Tool::Pnt(aVi);
634             if (aPi.Distance(aP) < LinTol) {
635               aMapToRemove.Add(aVi);
636               isFound = true;
637             }
638           }
639         }
640       }
641     }
642   }
643
644   /*
645   BRepLib::BuildCurves3d(theWire);
646   Handle(ShapeFix_Shape) Fixer = new ShapeFix_Shape(theWire);
647   Fixer->SetPrecision(LinTol);
648   Fixer->SetMaxTolerance(LinTol);
649   Fixer->Perform();
650   theWire = TopoDS::Wire(Fixer->Shape());
651   */
652
653   TopoDS_Edge prevEdge;
654   TopTools_ListOfShape finalList, currChain;
655
656   BRepTools_WireExplorer wexp (theWire);
657   if (wexp.More()) {
658     prevEdge = wexp.Current();
659     currChain.Append(prevEdge);
660     wexp.Next();
661   }
662   else {
663     Standard_NullObject::Raise("Empty wire given");
664   }
665
666   for (; wexp.More(); wexp.Next()) {
667     TopoDS_Edge anEdge = wexp.Current();
668     TopoDS_Vertex CurVertex = wexp.CurrentVertex();
669
670     bool continueChain = false;
671     if (aMapToRemove.Contains(CurVertex) || removeAll) {
672       // if C1 -> continue chain
673       if (AreEdgesC1(prevEdge, anEdge)) {
674         continueChain = true;
675       }
676     }
677
678     if (!continueChain) {
679       if (currChain.Extent() == 1) {
680         // add one edge to the final list
681         finalList.Append(currChain.First());
682       }
683       else {
684         // make wire from the list of edges
685         BRep_Builder B;
686         TopoDS_Wire aCurrWire;
687         B.MakeWire(aCurrWire);
688         TopTools_ListIteratorOfListOfShape itEdges (currChain);
689         for (; itEdges.More(); itEdges.Next()) {
690           TopoDS_Shape aValue = itEdges.Value();
691           B.Add(aCurrWire, TopoDS::Edge(aValue));
692         }
693
694         // make edge from the wire
695         TopoDS_Edge anEdge = GEOMImpl_ShapeDriver::MakeEdgeFromWire(aCurrWire, LinTol, AngTol);
696
697         // add this new edge to the final list
698         finalList.Append(anEdge);
699       }
700       currChain.Clear();
701     }
702
703     // add one edge to the chain
704     currChain.Append(anEdge);
705     prevEdge = anEdge;
706   }
707
708   if (currChain.Extent() == 1) {
709     // add one edge to the final list
710     finalList.Append(currChain.First());
711   }
712   else {
713     // make wire from the list of edges
714     BRep_Builder B;
715     TopoDS_Wire aCurrWire;
716     B.MakeWire(aCurrWire);
717     TopTools_ListIteratorOfListOfShape itEdges (currChain);
718     for (; itEdges.More(); itEdges.Next()) {
719       TopoDS_Shape aValue = itEdges.Value();
720       B.Add(aCurrWire, TopoDS::Edge(aValue));
721     }
722
723     // make edge from the wire
724     TopoDS_Edge anEdge = GEOMImpl_ShapeDriver::MakeEdgeFromWire(aCurrWire, LinTol, AngTol);
725
726     // add this new edge to the final list
727     finalList.Append(anEdge);
728   }
729
730   BRep_Builder B;
731   TopoDS_Wire aFinalWire;
732   B.MakeWire(aFinalWire);
733   TopTools_ListIteratorOfListOfShape itEdges (finalList);
734   for (; itEdges.More(); itEdges.Next()) {
735     TopoDS_Shape aValue = itEdges.Value();
736     B.Add(aFinalWire, TopoDS::Edge(aValue));
737   }
738   theOutShape = aFinalWire;
739
740   BRepCheck_Analyzer ana (theOutShape, Standard_True);
741   if (!ana.IsValid())
742     StdFail_NotDone::Raise("Non valid shape result");
743 }
744
745 //=======================================================================
746 //function : AreEdgesC1
747 //purpose  :
748 //=======================================================================
749 Standard_Boolean GEOMImpl_HealingDriver::AreEdgesC1 (const TopoDS_Edge& E1, const TopoDS_Edge& E2)
750 {
751   BRepAdaptor_Curve aCurve1 (E1);
752   BRepAdaptor_Curve aCurve2 (E2);
753
754   if (aCurve1.Continuity() == GeomAbs_C0 || aCurve2.Continuity() == GeomAbs_C0)
755     return Standard_False;
756
757   Standard_Real tol, tolMax = Precision::Confusion();
758   for (TopExp_Explorer ExV1 (E1, TopAbs_VERTEX); ExV1.More(); ExV1.Next()) {
759     TopoDS_Vertex Vertex = TopoDS::Vertex(ExV1.Current());
760     tol = BRep_Tool::Tolerance(Vertex);
761       if (tol > tolMax)
762         tolMax = tol;
763   }
764   for (TopExp_Explorer ExV2 (E2, TopAbs_VERTEX); ExV2.More(); ExV2.Next()) {
765     TopoDS_Vertex Vertex = TopoDS::Vertex(ExV2.Current());
766     tol = BRep_Tool::Tolerance(Vertex);
767       if (tol > tolMax)
768         tolMax = tol;
769   }
770
771   Standard_Real f1, l1, f2, l2;
772   f1 = aCurve1.FirstParameter();
773   l1 = aCurve1.LastParameter();
774   f2 = aCurve2.FirstParameter();
775   l2 = aCurve2.LastParameter();
776
777   if (f1 > l1) {
778     Standard_Real tmp = f1;
779     f1 = l1;
780     l1 = tmp;
781   }
782
783   if (f2 > l2) {
784     Standard_Real tmp = f2;
785     f2 = l2;
786     l2 = tmp;
787   }
788
789   gp_Pnt pf1, pl1, pf2, pl2;
790   gp_Vec vf1, vl1, vf2, vl2;
791   aCurve1.D1(f1, pf1, vf1);
792   aCurve1.D1(l1, pl1, vl1);
793   aCurve2.D1(f2, pf2, vf2);
794   aCurve2.D1(l2, pl2, vl2);
795
796   // pf1--->---pl1.pf2--->---pl2
797   if (pl1.SquareDistance(pf2) < tolMax*tolMax) {
798     if (vl1.Angle(vf2) < Precision::Angular())
799       return Standard_True;
800   }
801   // pl1---<---pf1.pf2--->---pl2
802   else if (pf1.SquareDistance(pf2) < tolMax*tolMax) {
803     if (vf1.Angle(-vf2) < Precision::Angular())
804       return Standard_True;
805   }
806   // pf1--->---pl1.pl2---<---pf2
807   else if (pl1.SquareDistance(pl2) < tolMax*tolMax) {
808     if (vl1.Angle(-vl2) < Precision::Angular())
809       return Standard_True;
810   }
811   // pl1---<---pf1.pl2---<---pf2
812   else {
813     if (vf1.Angle(vl2) < Precision::Angular())
814       return Standard_True;
815   }
816
817   return Standard_False;
818 }
819
820 //================================================================================
821 /*!
822  * \brief Returns a name of creation operation and names and values of creation parameters
823  */
824 //================================================================================
825
826 bool GEOMImpl_HealingDriver::
827 GetCreationInformation(std::string&             theOperationName,
828                        std::vector<GEOM_Param>& theParams)
829 {
830   if (Label().IsNull()) return 0;
831   Handle(GEOM_Function) function = GEOM_Function::GetFunction(Label());
832
833   GEOMImpl_IHealing aCI( function );
834   Standard_Integer aType = function->GetType();
835
836   switch ( aType ) {
837   case SHAPE_PROCESS:
838   {
839     theOperationName = "SHAPE_PROCESS";
840     AddParam( theParams, "Object", aCI.GetOriginal() );
841     Handle(TColStd_HArray1OfExtendedString) anOperators = aCI.GetOperators();
842     Handle(TColStd_HArray1OfExtendedString) aParams     = aCI.GetParameters();
843     Handle(TColStd_HArray1OfExtendedString) aValues     = aCI.GetValues();
844     for ( int i = anOperators->Lower(), nb = anOperators->Upper(); i <= nb; ++i )
845     {
846       const TCollection_ExtendedString& op = anOperators->Value(i);
847       AddParam( theParams, "Operation", op );
848       for ( int iP = aParams->Lower(), nbP = aParams->Upper(); iP <= nbP; ++iP )
849       {
850         const TCollection_ExtendedString& par = aParams->Value(i);
851         TCollection_AsciiString parAscii( par );
852         if ( par.Search( op ) == 1 && parAscii.Value( op.Length() + 1 ) == '.' )
853         {
854           GEOM_Param& p = AddParam( theParams, parAscii.ToCString() );
855           if ( iP <= aValues->Upper() )
856             p << aValues->Value( iP );
857         }
858       }
859     }
860     break;
861   }
862   case SUPPRESS_FACES:
863     theOperationName = "SUPPRESS_FACES";
864     AddParam( theParams, "Selected Shape", aCI.GetOriginal() );
865     AddParam( theParams, "Faces to remove", aCI.GetFaces() );
866     break;
867   case CLOSE_CONTOUR:
868     theOperationName = "CLOSE_CONTOUR";
869     AddParam( theParams, "Selected Shape", aCI.GetOriginal() );
870     AddParam( theParams, "Contour to close", aCI.GetWires() );
871     AddParam( theParams, "Close by common vertex", aCI.GetIsCommonVertex() );
872     break;
873   case REMOVE_INT_WIRES:
874     theOperationName = "SUPPRESS_INT_WIRES";
875     AddParam( theParams, "Selected face", aCI.GetOriginal() );
876     AddParam( theParams, "Wires to remove", aCI.GetWires(), "all" );
877     break;
878   case FILL_HOLES:
879     theOperationName = "SUPPERSS_HOLES";
880     AddParam( theParams, "Selected shape", aCI.GetOriginal() );
881     AddParam( theParams, "Wires to remove", aCI.GetWires(), "all" );
882     break;
883   case SEWING:
884   case SEWING_NON_MANIFOLD:
885     theOperationName = "SEWING";
886     AddParam( theParams, "Selected shape", aCI.GetOriginal() );
887     AddParam( theParams, "Allow Non Manifold", ( aType == SEWING_NON_MANIFOLD ));
888     AddParam( theParams, "Tolerance", aCI.GetTolerance() );
889     break;
890   case DIVIDE_EDGE:
891     theOperationName = "POINT_ON_EDGE";
892     if ( aCI.GetIndex() > 0 )
893       AddParam( theParams, "Edge", "#" ) << aCI.GetIndex() << " of " << aCI.GetOriginal();
894     else
895       AddParam( theParams, "Edge", aCI.GetOriginal() );
896     AddParam( theParams, "By parameter", aCI.GetIsByParameter() );
897     AddParam( theParams, "Value", aCI.GetDevideEdgeValue() );
898     break;
899   case CHANGE_ORIENTATION:
900     theOperationName = "CHANGE_ORIENTATION";
901     AddParam( theParams, "Selected shape", aCI.GetOriginal() );
902     break;
903   case LIMIT_TOLERANCE:
904     theOperationName = "LIMIT_TOLERANCE";
905     AddParam( theParams, "Selected shape", aCI.GetOriginal() );
906     AddParam( theParams, "Tolerance", aCI.GetTolerance() );
907     AddParam( theParams, "Type", aCI.GetType() );
908     break;
909   case FUSE_COLLINEAR_EDGES:
910     theOperationName = "FUSE_EDGES";
911     AddParam( theParams, "Wire", aCI.GetOriginal() );
912     AddParam( theParams, "Vertexes", aCI.GetShapes() );
913     break;
914   case REMOVE_INTERNAL_FACES:
915     theOperationName = "REMOVE_WEBS";
916     AddParam( theParams, "Selected shape", aCI.GetOriginal() );
917     break;
918   default:
919     return false;
920   }
921   
922   return true;
923 }
924 IMPLEMENT_STANDARD_HANDLE (GEOMImpl_HealingDriver,GEOM_BaseDriver);
925
926 IMPLEMENT_STANDARD_RTTIEXT (GEOMImpl_HealingDriver,GEOM_BaseDriver);