summaryrefslogtreecommitdiff
path: root/src/BRepCheck/BRepCheck_Edge.cxx
blob: 76dde85b449169362f5ca13f5cd76dec5b8bd4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
// File:	BRepCheck_Edge.cxx
// Created:	Mon Dec 11 13:42:44 1995
// Author:	Jacques GOUSSARD
//		<jag@bravox>


#include <BRepCheck_Edge.ixx>
#include <TColStd_Array1OfTransient.hxx>

#include <BRepCheck_ListOfStatus.hxx>
#include <BRepCheck_ListIteratorOfListOfStatus.hxx>

#include <BRep_TEdge.hxx>
#include <BRep_TFace.hxx>

#include <BRep_CurveRepresentation.hxx>
#include <BRep_ListOfCurveRepresentation.hxx>
#include <BRep_ListIteratorOfListOfCurveRepresentation.hxx>
#include <BRep_GCurve.hxx>
#include <BRep_CurveOnSurface.hxx>

#include <BRep_Tool.hxx>

#include <TopExp_Explorer.hxx>

#include <Geom_Surface.hxx>
#include <Geom_RectangularTrimmedSurface.hxx>
#include <Geom_Plane.hxx>
#include <Geom_TrimmedCurve.hxx>
#include <Geom2d_Curve.hxx>

#include <Geom2dAdaptor_HCurve.hxx>
#include <GeomAdaptor_Curve.hxx>
#include <GeomAdaptor_HCurve.hxx>
#include <GeomAdaptor_HSurface.hxx>
#include <Adaptor3d_CurveOnSurface.hxx>
#include <Adaptor3d_HCurveOnSurface.hxx>

#include <ProjLib_ProjectedCurve.hxx>
#include <GeomProjLib.hxx>
#include <Extrema_LocateExtPC.hxx>

#include <BRepCheck.hxx>
#include <Geom2dAdaptor.hxx>
#include <TopoDS.hxx>
#include <TopAbs_ShapeEnum.hxx>
#include <TopoDS_Face.hxx>
#include <Precision.hxx>


//modified by NIZNHY-PKV Thu May 05 09:01:57 2011f
static 
  Standard_Boolean Validate(const Adaptor3d_Curve&,
			    const Adaptor3d_CurveOnSurface&,
			    const Standard_Real,
			    const Standard_Boolean);
static
  void PrintProblematicPoint(const gp_Pnt&,
			     const Standard_Real,
			     const Standard_Real);

static
  Standard_Real Prec(const Adaptor3d_Curve& aAC3D,
		     const Adaptor3d_CurveOnSurface& aACS);
static
  Standard_Real PrecCurve(const Adaptor3d_Curve& aAC3D);
static
  Standard_Real PrecSurface(const Adaptor3d_CurveOnSurface& aACS);

//static Standard_Boolean Validate(const Adaptor3d_Curve&,
//				 const Adaptor3d_Curve&,
//				 const Standard_Real,
//				 const Standard_Boolean);
//modified by NIZNHY-PKV Thu May 05 09:02:01 2011t

#define NCONTROL 23

//=======================================================================
//function : BRepCheck_Edge
//purpose  : 
//=======================================================================

BRepCheck_Edge::BRepCheck_Edge(const TopoDS_Edge& E)
{
  Init(E);
  myGctrl = Standard_True;
}

//=======================================================================
//function : Minimum
//purpose  : 
//=======================================================================

void BRepCheck_Edge::Minimum()
{

  if (!myMin) {
    BRepCheck_ListOfStatus thelist;
    myMap.Bind(myShape, thelist);
    BRepCheck_ListOfStatus& lst = myMap(myShape);
    myCref.Nullify();

    // Existence et unicite d`une representation 3D
    Handle(BRep_TEdge)& TE = *((Handle(BRep_TEdge)*)&myShape.TShape());
    BRep_ListIteratorOfListOfCurveRepresentation itcr(TE->Curves());
    Standard_Boolean exist = Standard_False;
    Standard_Boolean unique = Standard_True;
    // Search for a 3D reference. If no existent one, creates it with the 
    // first encountered CurveOnSurf; if multiple, chooses the first one...
    
    Standard_Boolean Degenerated = TE->Degenerated();
    Standard_Boolean SameParameter = TE->SameParameter();
    Standard_Boolean SameRange = TE->SameRange();
    if (!SameRange && SameParameter) {
      BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
    }
//    Handle(Geom_Curve) C3d;

    while (itcr.More()) {
      const Handle(BRep_CurveRepresentation)& cr = itcr.Value();
      if (cr->IsCurve3D()) {
	if (!exist) {
	  exist = Standard_True;
	}
	else {
	  unique = Standard_False;
	}
	if (myCref.IsNull() && !cr->Curve3D().IsNull()) {
	  myCref = cr;
	}
      }
      itcr.Next();
    }

    if (!exist) {
      BRepCheck::Add(lst,BRepCheck_No3DCurve);
      // myCref est nulle
    }
    else if (!unique) {
      BRepCheck::Add(lst,BRepCheck_Multiple3DCurve);
    }

    if (myCref.IsNull() && !Degenerated) {
      itcr.Initialize(TE->Curves());
      while (itcr.More()) {
	const Handle(BRep_CurveRepresentation)& cr = itcr.Value();
	if (cr->IsCurveOnSurface()) {
	  myCref = cr;
	  break;
	}
	itcr.Next();
      }
    }
    else if (!myCref.IsNull() && Degenerated){
      BRepCheck::Add(lst,BRepCheck_InvalidDegeneratedFlag);
    }

    if (!myCref.IsNull()) {
      const Handle(BRep_GCurve)& GCref = *((Handle(BRep_GCurve)*)&myCref);
      Standard_Real First,Last;
      GCref->Range(First,Last);
      if (Last<=First) {
	myCref.Nullify();
	BRepCheck::Add(lst,BRepCheck_InvalidRange);
      }
      else {
	if (myCref->IsCurve3D()) {
          // eap 6 Jun 2002 occ332
          // better transform C3d instead of transforming Surf upto C3d initial location,
          // on transformed BSpline surface 'same parameter' may seem wrong
          TopLoc_Location L = myShape.Location() * myCref->Location();
	  Handle(Geom_Curve) C3d = Handle(Geom_Curve)::DownCast
	    (myCref->Curve3D()->Transformed
	     (/*myCref->Location()*/L.Transformation()));
	  GeomAdaptor_Curve GAC3d(C3d,First,Last);
	  myHCurve = new GeomAdaptor_HCurve(GAC3d);
	}
	else { // curve on surface
	  Handle(Geom_Surface) Sref = myCref->Surface();
	  Sref = Handle(Geom_Surface)::DownCast
	    (Sref->Transformed(myCref->Location().Transformation()));
	  const Handle(Geom2d_Curve)& PCref = myCref->PCurve();
	  Handle(GeomAdaptor_HSurface) GAHSref = new GeomAdaptor_HSurface(Sref);
	  Handle(Geom2dAdaptor_HCurve) GHPCref = 
	    new Geom2dAdaptor_HCurve(PCref,First,Last);
	  Adaptor3d_CurveOnSurface ACSref(GHPCref,GAHSref);
	  myHCurve = new Adaptor3d_HCurveOnSurface(ACSref);
	}
      }
    }
    if (lst.IsEmpty()) {
      lst.Append(BRepCheck_NoError);
    }
    myMin = Standard_True;
  }
}


//=======================================================================
//function : InContext
//purpose  : 
//=======================================================================

void BRepCheck_Edge::InContext(const TopoDS_Shape& S)
{
  if (myMap.IsBound(S)) {
    return;
  }
  BRepCheck_ListOfStatus thelist;
  myMap.Bind(S, thelist);
  BRepCheck_ListOfStatus& lst = myMap(S);

  Handle(BRep_TEdge)& TE = *((Handle(BRep_TEdge)*)&myShape.TShape());
  Standard_Real Tol = BRep_Tool::Tolerance(TopoDS::Edge(myShape));

  TopAbs_ShapeEnum styp = S.ShapeType();
//  for (TopExp_Explorer exp(S,TopAbs_EDGE); exp.More(); exp.Next()) {
  TopExp_Explorer exp(S,TopAbs_EDGE) ;
  for ( ; exp.More(); exp.Next()) {
    if (exp.Current().IsSame(myShape)) {
      break;
    }
  }
  if (!exp.More()) {
    BRepCheck::Add(lst,BRepCheck_SubshapeNotInShape);
    return;
  }
  
  switch (styp) {
  case TopAbs_FACE:
    if (!myCref.IsNull()) {
      
      Standard_Boolean SameParameter = TE->SameParameter();
      Standard_Boolean SameRange = TE->SameRange();
//  Modified by skv - Tue Apr 27 11:48:13 2004 Begin
      if (!SameParameter || !SameRange) {
	if (!SameParameter)
	  BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
	if (!SameRange)
	  BRepCheck::Add(lst,BRepCheck_InvalidSameRangeFlag);

	return;
      }
//  Modified by skv - Tue Apr 27 11:48:14 2004 End
      Standard_Real First = myHCurve->FirstParameter();
      Standard_Real Last  = myHCurve->LastParameter();

      Handle(BRep_TFace)& TF = *((Handle(BRep_TFace)*) &S.TShape());
      const TopLoc_Location& Floc = S.Location();
      const TopLoc_Location& TFloc = TF->Location();
      const Handle(Geom_Surface)& Su = TF->Surface();
      TopLoc_Location L = (Floc * TFloc).Predivided(myShape.Location());
      Standard_Boolean pcurvefound = Standard_False;

      BRep_ListIteratorOfListOfCurveRepresentation itcr(TE->Curves());
      while (itcr.More()) {
	const Handle(BRep_CurveRepresentation)& cr = itcr.Value();
	if (cr != myCref && cr->IsCurveOnSurface(Su,L)) {
	  pcurvefound = Standard_True;
	  const Handle(BRep_GCurve)& GC = *((Handle(BRep_GCurve)*)&cr);
	  Standard_Real f,l;
	  GC->Range(f,l);
          // gka OCC
//  Modified by skv - Tue Apr 27 11:50:35 2004 Begin
// 	  if (SameRange && (fabs(f-First) > Precision::PConfusion() || fabs(l-Last)> Precision::PConfusion())) { //f != First || l != Last)) { gka OCC
	  if (fabs(f-First) > Precision::PConfusion() ||
	      fabs(l-Last)  > Precision::PConfusion()) {
	    BRepCheck::Add(lst,BRepCheck_InvalidSameRangeFlag);
	    BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
// 	    if (SameParameter) {
// 	      BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
// 	    }
	  }
//  Modified by skv - Tue Apr 27 11:50:37 2004 End
	  if (myGctrl) {
	    Handle(Geom_Surface) Sb = cr->Surface();
	    Sb = Handle(Geom_Surface)::DownCast
//	      (Su->Transformed(L.Transformation()));
 	      (Su->Transformed(/*L*/(Floc * TFloc).Transformation()));
	    Handle(Geom2d_Curve) PC = cr->PCurve();
	    Handle(GeomAdaptor_HSurface) GAHS = new GeomAdaptor_HSurface(Sb);
	    Handle(Geom2dAdaptor_HCurve) GHPC = new Geom2dAdaptor_HCurve(PC,f,l);
	    Adaptor3d_CurveOnSurface ACS(GHPC,GAHS);
	    Standard_Boolean ok = 
	      Validate(myHCurve->Curve(),ACS,Tol,SameParameter);
	    if (!ok) {
	      if (cr->IsCurveOnClosedSurface()) {
		BRepCheck::Add(lst,BRepCheck_InvalidCurveOnClosedSurface);
	      }
	      else {
		BRepCheck::Add(lst,BRepCheck_InvalidCurveOnSurface);
	      }
//  Modified by skv - Tue Apr 27 11:53:00 2004 Begin
	      BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
// 	      if (SameParameter) {
// 		BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
// 	      }
//  Modified by skv - Tue Apr 27 11:53:01 2004 End
	    }
	    if (cr->IsCurveOnClosedSurface()) {
	      GHPC->ChangeCurve2d().Load(cr->PCurve2(),f,l); // same bounds
	      ACS.Load(GAHS); // sans doute inutile
	      ACS.Load(GHPC); // meme remarque...
	      ok = Validate(myHCurve->Curve(),ACS,Tol,SameParameter);
	      if (!ok) {
		BRepCheck::Add(lst,BRepCheck_InvalidCurveOnClosedSurface);
//  Modified by skv - Tue Apr 27 11:53:20 2004 Begin
		if (SameParameter) {
		  BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
		}
//  Modified by skv - Tue Apr 27 11:53:23 2004 End
	      }
	    }
	  }
	}
	itcr.Next();
      }

      if (!pcurvefound) {
	Handle(Geom_Plane) P;
	Handle(Standard_Type) dtyp = Su->DynamicType();
	if (dtyp == STANDARD_TYPE(Geom_RectangularTrimmedSurface)) {
	  P = Handle(Geom_Plane)::DownCast
	    (Handle(Geom_RectangularTrimmedSurface)::
	     DownCast(Su)->BasisSurface());
	}
	else {
	  P = Handle(Geom_Plane)::DownCast(Su);
	}
	if (P.IsNull()) { // not a plane
	  BRepCheck::Add(lst,BRepCheck_NoCurveOnSurface);
	}
	else { // on fait la projection a la volee, comme BRep_Tool
	  // plan en position
	  if (myGctrl) {
	    P = Handle(Geom_Plane)::
	      DownCast(P->Transformed(/*L*/(Floc * TFloc).Transformation()));// eap occ332
	    //on projette Cref sur ce plan
	    Handle(GeomAdaptor_HSurface) GAHS = new GeomAdaptor_HSurface(P);

	    // Dub - Normalement myHCurve est une GeomAdaptor_HCurve
	    GeomAdaptor_Curve& Gac = 
	      Handle(GeomAdaptor_HCurve)::DownCast(myHCurve)->ChangeCurve();
	    Handle(Geom_Curve) C3d = Gac.Curve();
	    Handle(Geom_Curve) ProjOnPlane = 
	      GeomProjLib::ProjectOnPlane(new Geom_TrimmedCurve(C3d,First,Last),
					  P, P->Position().Direction(),
					  Standard_True);
	    Handle(GeomAdaptor_HCurve) aHCurve = 
	      new GeomAdaptor_HCurve(ProjOnPlane);

	    ProjLib_ProjectedCurve proj(GAHS,aHCurve);
	    Handle(Geom2d_Curve) PC = Geom2dAdaptor::MakeCurve(proj);
	    Handle(Geom2dAdaptor_HCurve) GHPC = 
	      new Geom2dAdaptor_HCurve(PC,
				       myHCurve->FirstParameter(),
				       myHCurve->LastParameter());

	    Adaptor3d_CurveOnSurface ACS(GHPC,GAHS);
	    
	    Standard_Boolean ok = Validate(myHCurve->Curve(),ACS,
					   Tol,Standard_True); // voir dub...
	    if (!ok) {
	      BRepCheck::Add(lst,BRepCheck_InvalidCurveOnSurface);
	    }
	  }
	}
      }
    }
    break;
  case TopAbs_SOLID:
    {
      // on verifie que l`edge est bien connectee 2 fois (pas de bord libre)
      Standard_Integer nbconnection = 0;
      //TopExp_Explorer exp;
      for (exp.Init(S,TopAbs_FACE); exp.More(); exp.Next()) {
	const TopoDS_Face& fac = TopoDS::Face(exp.Current());
	TopExp_Explorer exp2;
	for (exp2.Init(fac,TopAbs_EDGE); exp2.More(); exp2.Next()) {
	  if (exp2.Current().IsSame(myShape)) {
	    nbconnection++;
	  }
	}
      }
      if (nbconnection < 2 && !TE->Degenerated()) {
	BRepCheck::Add(myMap(S),BRepCheck_FreeEdge);
      }
      else if (nbconnection > 2) {
	BRepCheck::Add(myMap(S),BRepCheck_InvalidMultiConnexity);
      }
      else {
	BRepCheck::Add(myMap(S),BRepCheck_NoError);
      }
    }
    break;
  default:
    break;
  }
  if (myMap(S).IsEmpty()) {
    myMap(S).Append(BRepCheck_NoError);
  }
}


//=======================================================================
//function : Blind
//purpose  : 
//=======================================================================

void BRepCheck_Edge::Blind()
{
//  Modified by skv - Tue Apr 27 11:36:01 2004 Begin
// The body of this function is removed because of its useless.
  if (!myBlind) {
    myBlind = Standard_True;
  }
//  Modified by skv - Tue Apr 27 11:36:02 2004 End
}


//=======================================================================
//function : GeometricControls
//purpose  : 
//=======================================================================

void BRepCheck_Edge::GeometricControls(const Standard_Boolean B)
{
  myGctrl = B;
}


//=======================================================================
//function : GeometricControls
//purpose  : 
//=======================================================================

Standard_Boolean BRepCheck_Edge::GeometricControls() const
{
  return myGctrl;
}




//=======================================================================
//function : Tolerance
//purpose  : 
//=======================================================================

Standard_Real BRepCheck_Edge::Tolerance()
{
  Handle(BRep_TEdge)& TE = *((Handle(BRep_TEdge)*)&myShape.TShape());
  Standard_Integer it, iRep=1, nbRep=(TE->Curves()).Extent();
  if (nbRep<=1) {
    return Precision::Confusion();
  }
  TColStd_Array1OfTransient theRep(1, nbRep*2);
  Standard_Real First, Last;
  if (!myHCurve.IsNull()) {
    First = myHCurve->FirstParameter();
    Last=  myHCurve->LastParameter();
  }
  else {
    BRep_Tool::Range(TopoDS::Edge(myShape), First, Last);
  }

  BRep_ListIteratorOfListOfCurveRepresentation itcr(TE->Curves());
  for (; itcr.More(); itcr.Next()) {
    const Handle(BRep_CurveRepresentation)& cr = itcr.Value();
    if (cr->IsCurve3D() && !TE->Degenerated()) {
      //// modified by jgv, 20.03.03 ////
      TopLoc_Location Loc = myShape.Location() * cr->Location();
      Handle(Geom_Curve) C3d = Handle(Geom_Curve)::DownCast
	(cr->Curve3D()->Transformed( Loc.Transformation() ));
      ///////////////////////////////////
      GeomAdaptor_Curve GAC3d(C3d,First,Last);
      it=iRep;
      if (iRep>1) {
	theRep(iRep)=theRep(1);
	it=1;
      }
      theRep(it) = new GeomAdaptor_HCurve(GAC3d);
      iRep++;
    }
    else if (cr->IsCurveOnSurface()) {
      {
        Handle(Geom_Surface) Sref = cr->Surface();
	//// modified by jgv, 20.03.03 ////
	TopLoc_Location Loc = myShape.Location() * cr->Location();
        Sref = Handle(Geom_Surface)::DownCast
          (Sref->Transformed( Loc.Transformation() ));
	///////////////////////////////////
        const Handle(Geom2d_Curve)& PCref = cr->PCurve();
        Handle(GeomAdaptor_HSurface) GAHSref = new GeomAdaptor_HSurface(Sref);
        Handle(Geom2dAdaptor_HCurve) GHPCref = 
          new Geom2dAdaptor_HCurve(PCref,First,Last);
        Adaptor3d_CurveOnSurface ACSref(GHPCref,GAHSref);
        theRep(iRep) = new Adaptor3d_HCurveOnSurface(ACSref);
        iRep++;
      }
      if (cr->IsCurveOnClosedSurface()) {
	Handle(Geom_Surface) Sref = cr->Surface();
	Sref = Handle(Geom_Surface)::DownCast
	  (Sref->Transformed(cr->Location().Transformation()));
	const Handle(Geom2d_Curve)& PCref = cr->PCurve2();
	Handle(GeomAdaptor_HSurface) GAHSref = new GeomAdaptor_HSurface(Sref);
	Handle(Geom2dAdaptor_HCurve) GHPCref = 
	  new Geom2dAdaptor_HCurve(PCref,First,Last);
	Adaptor3d_CurveOnSurface ACSref(GHPCref,GAHSref);
	theRep(iRep) = new Adaptor3d_HCurveOnSurface(ACSref);
	iRep++;
	nbRep++;
      }
    }
    else {
      nbRep--;
    }
  }

  Standard_Real dist2, tol2, tolCal=0., prm;
  gp_Pnt center, othP;
  Standard_Integer i;
  for (i= 0; i< NCONTROL; i++) {
    prm = ((NCONTROL-1-i)*First + i*Last)/(NCONTROL-1);
    tol2=dist2=0.;
    center=(*(Handle(Adaptor3d_HCurve)*)&theRep(1))->Value(prm);
    for (iRep=2; iRep<=nbRep; iRep++) {
      othP=(*(Handle(Adaptor3d_HCurve)*)&theRep(iRep))->Value(prm);
      dist2=center.SquareDistance(othP);
      if (dist2>tolCal) tolCal=dist2;
    }
    if (tol2>tolCal) {
      tolCal=tol2;
    }
  }
  // On prend 5% de marge car au dessus on crontrole severement
  return sqrt(tolCal)*1.05;
}

//=======================================================================
//function : Validate
//purpose  : 
//=======================================================================
Standard_Boolean Validate(const Adaptor3d_Curve& CRef,
			  const Adaptor3d_CurveOnSurface& Other,
			  const Standard_Real Tol,
			  const Standard_Boolean SameParameter)
{
  Standard_Boolean  Status, proj; 
  Standard_Real aPC, First, Last, Error;
  gp_Pnt  problematic_point ;
  //
  Status = Standard_True;
  Error = 0.;
  First = CRef.FirstParameter();
  Last  = CRef.LastParameter();
  //
  aPC=Precision::PConfusion();
  proj = (!SameParameter || 
	  fabs(Other.FirstParameter()-First) > aPC || 
	  fabs( Other.LastParameter()-Last) > aPC);
  if (!proj) {
    Standard_Integer i;
    Standard_Real Tol2, prm, dD;
    gp_Pnt pref, pother;
    //modified by NIZNHY-PKV Thu May 05 09:06:41 2011f
    //OCC22428
    dD=Prec(CRef, Other);//3.e-15;
    Tol2=Tol+dD;
    Tol2=Tol2*Tol2;
    //Tol2=Tol*Tol;
    //modified by NIZNHY-PKV Thu May 05 09:06:47 2011t
    
    for (i = 0; i< NCONTROL; ++i) {
      prm = ((NCONTROL-1-i)*First + i*Last)/(NCONTROL-1);
      pref = CRef.Value(prm);
      pother = Other.Value(prm);
      if (pref.SquareDistance(pother) > Tol2) {
	problematic_point = pref ;
	Status = Standard_False;
	Error  = pref.Distance(pother);
	PrintProblematicPoint(problematic_point, Error, Tol);
	return Status;
        //goto FINISH ;
      }
    }
  }
  else {
    Extrema_LocateExtPC refd,otherd;
    Standard_Real OFirst = Other.FirstParameter();
    Standard_Real OLast  = Other.LastParameter();
    gp_Pnt pd = CRef.Value(First);
    gp_Pnt pdo = Other.Value(OFirst);
    Standard_Real distt = pd.SquareDistance(pdo);
    if (distt > Tol*Tol) {
      problematic_point = pd ;
      Status = Standard_False ;
      Error = Sqrt(distt);
      PrintProblematicPoint(problematic_point, Error, Tol);
      return Status;
      //goto FINISH ;
    }
    pd = CRef.Value(Last);
    pdo = Other.Value(OLast);
    distt = pd.SquareDistance(pdo);
    if (distt > Tol*Tol) {
      problematic_point = pd ;
      Status = Standard_False ;
      Error = Sqrt(distt);
      PrintProblematicPoint(problematic_point, Error, Tol);
      return Status;
      //goto FINISH ;
    }

    refd.Initialize(CRef,First,Last,CRef.Resolution(Tol));
    otherd.Initialize(Other,OFirst,OLast,Other.Resolution(Tol));
    for (Standard_Integer i = 2; i< NCONTROL-1; i++) {
      Standard_Real rprm = ((NCONTROL-1-i)*First + i*Last)/(NCONTROL-1);
      gp_Pnt pref = CRef.Value(rprm);
      Standard_Real oprm = ((NCONTROL-1-i)*OFirst + i*OLast)/(NCONTROL-1);
      gp_Pnt pother = Other.Value(oprm);
      refd.Perform(pother,rprm);
      if (!refd.IsDone() || refd.SquareDistance() > Tol * Tol) {
	problematic_point = pref ;
	Status = Standard_False ;
	if (refd.IsDone()) {
	  Error = sqrt (refd.SquareDistance());
	}
	else {
	  Error = RealLast();
	}
	PrintProblematicPoint(problematic_point, Error, Tol);
	return Status;
        //goto FINISH ;
      }
      otherd.Perform(pref,oprm);
      if (!otherd.IsDone() || otherd.SquareDistance() > Tol * Tol) {
	problematic_point = pref ;
	Status = Standard_False ;
	if (otherd.IsDone()) {
	  Error = sqrt (otherd.SquareDistance());
	}
	else {
	  Error = RealLast();
	}
	PrintProblematicPoint(problematic_point, Error, Tol);
	return Status;
	//goto FINISH ;
      }
    }
  }
  //FINISH :
/*
#ifdef DEB
    if (! Status) {
      cout << " **** probleme de SameParameter au point :" << endl;
      cout << "         " << problematic_point.Coord(1) << " " 
	   << problematic_point.Coord(2) << " " 
	   << problematic_point.Coord(3) << endl ;
      cout << "   Erreur detectee :" << Error << " Tolerance :" << Tol << endl;
    }
#endif
*/

  return Status ;
  
}
//=======================================================================
//function : Prec
//purpose  : 
//=======================================================================
Standard_Real Prec(const Adaptor3d_Curve& aAC3D,
		   const Adaptor3d_CurveOnSurface& aACS)
{
  Standard_Real aXEmax, aXC, aXS;
  //
  aXC=PrecCurve(aAC3D);
  aXS=PrecSurface(aACS);
  aXEmax=(aXC>aXS) ? aXC: aXS;
  return aXEmax;
}
//=======================================================================
//function : PrecCurve
//purpose  : 
//=======================================================================
Standard_Real PrecCurve(const Adaptor3d_Curve& aAC3D)
{
  Standard_Real aXEmax;
  GeomAbs_CurveType aCT;
  //
  aXEmax=RealEpsilon(); 
  //
  aCT=aAC3D.GetType();
  if (aCT==GeomAbs_Ellipse) {
    Standard_Integer i;
    Standard_Real aX[5], aXE;
    //
    gp_Elips aEL3D=aAC3D.Ellipse();
    aEL3D.Location().Coord(aX[0], aX[1], aX[2]);
    aX[3]=aEL3D.MajorRadius();
    aX[4]=aEL3D.MinorRadius();
    aXEmax=-1.;
    for (i=0; i<5; ++i) {
      if (aX[i]<0.) {
	aX[i]=-aX[i];
      }
      aXE=Epsilon(aX[i]);
      if (aXE>aXEmax) {
	aXEmax=aXE;
      }
    }
  }//if (aCT=GeomAbs_Ellipse) {
  //
  return aXEmax;
}
//=======================================================================
//function : PrecSurface
//purpose  : 
//=======================================================================
Standard_Real PrecSurface(const Adaptor3d_CurveOnSurface& aACS)
{
  Standard_Real aXEmax;
  GeomAbs_SurfaceType aST;
  //
  aXEmax=RealEpsilon(); 
  //
  const Handle(Adaptor3d_HSurface)& aAHS=aACS.GetSurface();
  aST=aAHS->GetType();
  if (aST==GeomAbs_Cone) {
    gp_Cone aCone=aAHS->Cone();
    Standard_Integer i;
    Standard_Real aX[4], aXE;
    //
    aCone.Location().Coord(aX[0], aX[1], aX[2]);
    aX[3]=aCone.RefRadius();
    aXEmax=-1.;
    for (i=0; i<4; ++i) {
      if (aX[i]<0.) {
	aX[i]=-aX[i];
      }
      aXE=Epsilon(aX[i]);
      if (aXE>aXEmax) {
	aXEmax=aXE;
      }
    }
  }//if (aST==GeomAbs_Cone) {
  return aXEmax;
}
//=======================================================================
//function : PrintProblematicPoint
//purpose  : 
//=======================================================================
#ifdef DEB
void PrintProblematicPoint(const gp_Pnt& problematic_point,
			   const Standard_Real Error,
			   const Standard_Real Tol)
{
  cout << " **** probleme de SameParameter au point :" << endl;
  cout << "         " << problematic_point.Coord(1) << " " 
    << problematic_point.Coord(2) << " " << problematic_point.Coord(3) << endl ;
  cout << "   Erreur detectee :" << Error << " Tolerance :" << Tol << endl;
}
#else
void PrintProblematicPoint(const gp_Pnt&,
			   const Standard_Real,
			   const Standard_Real)
{
}
#endif