summaryrefslogtreecommitdiff
path: root/inc/GCPnts_AbscissaPoint.gxx
blob: 7613fff4bac026088ff8768ebe4293ad48d3de1a (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
// File:	GCPnts_AbscissaPoint.gxx
// Created:	Fri May  5 09:46:56 1995
// Author:	Modelistation
//		<model@fuegox>

//
// Dimension independant used to implement GCPnts_AbscissaPoint
//

// compute the type 
// and the length ratio if GCPnts_LengthParametrized
#include <GCPnts_AbscissaType.hxx>
#include <gp_Vec.hxx>
#include <gp_Vec2d.hxx>
#include <gp_Circ.hxx>
#include <gp_Circ2d.hxx>
#include <Precision.hxx>
#include <TColStd_Array1OfReal.hxx>
#include <BSplCLib.hxx>

static GCPnts_AbscissaType computeType( TheCurve& C,
				       Standard_Real& Ratio)
{
  GCPnts_AbscissaType LocalType ;

  if (C.NbIntervals(GeomAbs_CN) > 1)
    return GCPnts_AbsComposite;

  switch (C.GetType()) {
    
  case GeomAbs_Line:
    Ratio = 1.0e0 ;
    return GCPnts_LengthParametrized;

  case GeomAbs_Circle:
    Ratio = C.Circle().Radius();
    return GCPnts_LengthParametrized;

  case GeomAbs_BezierCurve:
    {
      Handle_TheBezierCurve Bz = C.Bezier();
      if ((Bz->NbPoles() == 2) && !(Bz->IsRational())) {
	Ratio = Bz->DN(0,1).Magnitude();
	LocalType =  GCPnts_LengthParametrized;
      }
      else
	LocalType = GCPnts_Parametrized;
      return LocalType ;
    }
  case GeomAbs_BSplineCurve:
    {
      Handle_TheBSplineCurve Bs = C.BSpline();
      if ((Bs->NbPoles() == 2) && !(Bs->IsRational())) {
	Ratio = Bs->DN(Bs->FirstParameter(),1).Magnitude();
	LocalType = GCPnts_LengthParametrized;
      }
      else
	LocalType = GCPnts_Parametrized;
      return LocalType ; 
    }
    default:
      return GCPnts_Parametrized;
    
  }
}

// compute a point at distance Abscis from parameter U0
// using Ui as initial guess

static void Compute(CPnts_AbscissaPoint& theComputer,
                    TheCurve& C,
                    Standard_Real& Abscis,
		    Standard_Real& U0,
		    Standard_Real& Ui,
		    const Standard_Real EPSILON) 
{
  // test for easy solution
  if (Abs(Abscis) <= Precision::Confusion()) {
    theComputer.SetParameter(U0);
    return;
  }

  Standard_Real Ratio;
  GCPnts_AbscissaType Type = computeType(C,Ratio);

  switch (Type) {
  case GCPnts_LengthParametrized : 
    theComputer.SetParameter(U0 + Abscis / Ratio);
    return;

  case GCPnts_Parametrized : 
    theComputer.Init(C);
    theComputer.Perform(Abscis, U0, Ui, EPSILON);
    return;

  case GCPnts_AbsComposite : 
    {
      Standard_Integer NbIntervals = C.NbIntervals(GeomAbs_CN);
      TColStd_Array1OfReal TI(1,NbIntervals+1);
      C.Intervals(TI,GeomAbs_CN);
      Standard_Real L = 0.0, sign = 1.;
      Standard_Integer Index = 1;
      BSplCLib::Hunt(TI,U0,Index);
      Standard_Integer Direction = 1;
      if (Abscis < 0) {
	Direction = 0;
	Abscis = -Abscis;
	sign = -1.;
      }

      while ((Index >= 1) && (Index <= NbIntervals)) {

	L = CPnts_AbscissaPoint::Length(C, U0, TI(Index+Direction));
	if (Abs(L - Abscis) <= Precision::Confusion()) {
	  theComputer.SetParameter(TI(Index+Direction));
	  return;
	}
	if(L > Abscis) {
	  if ((Ui < TI(Index)) || (Ui > TI(Index+1))) {
	    Ui = (Abscis / L) * (TI(Index+1) - U0);
	    if (Direction)
	      Ui = U0 + Ui;
	    else
	      Ui = U0 - Ui;
	  }
	  theComputer.Init(C,TI(Index),TI(Index+1));
	  theComputer.Perform(sign*Abscis, U0, Ui, EPSILON);
	  return;
	}
	else {
	  U0 = TI(Index+Direction);
	  Abscis -= L;
	}
	if (Direction)
	  Index++;
	else
	  Index--;
      }

      // Push a little bit outside the limits (hairy !!!)
      Ui = U0 + 0.1;
      theComputer.Init(C,U0,U0+0.2);
      theComputer.Perform(sign*Abscis, U0, Ui, EPSILON);
      return;
    }
    break;
  }

}

// introduced by rbv for curvilinear parametrization
// performs more apropriate tolerance managment

static void AdvCompute(CPnts_AbscissaPoint& theComputer,
                    TheCurve& C,
                    Standard_Real& Abscis,
		    Standard_Real& U0,
		    Standard_Real& Ui,
		    const Standard_Real EPSILON) 
{
  // test for easy solution
  if (Abs(Abscis) <= EPSILON) {
    theComputer.SetParameter(U0);
    return;
  }
  
  Standard_Real Ratio;
  GCPnts_AbscissaType Type = computeType(C,Ratio);

  switch (Type) {
  case GCPnts_LengthParametrized : 
    theComputer.SetParameter(U0 + Abscis / Ratio);
    return;

  case GCPnts_Parametrized : 
//    theComputer.Init(C);
    theComputer.Init(C, EPSILON); //rbv's modification
//
    theComputer.AdvPerform(Abscis, U0, Ui, EPSILON);
    return;

  case GCPnts_AbsComposite : 
    {
      Standard_Integer NbIntervals = C.NbIntervals(GeomAbs_CN);
      TColStd_Array1OfReal TI(1,NbIntervals+1);
      C.Intervals(TI,GeomAbs_CN);
      Standard_Real L = 0.0, sign = 1.;
      Standard_Integer Index = 1;
      BSplCLib::Hunt(TI,U0,Index);
	
      Standard_Integer Direction = 1;
      if (Abscis < 0) {
	Direction = 0;
	Abscis = -Abscis;
	sign = -1.;
      }

      if(Index == 0 && Direction > 0) {
	L = CPnts_AbscissaPoint::Length(C, U0, TI(Index+Direction), EPSILON);
	if (Abs(L - Abscis) <= /*Precision::Confusion()*/EPSILON) {
	  theComputer.SetParameter(TI(Index+Direction));
	  return;
	}
	if(L > Abscis) {
	  if ( Ui > TI(Index+1) ) {
	    Ui = (Abscis / L) * (TI(Index+1) - U0);
	    Ui = U0 + Ui;
	  }
	  theComputer.Init(C,U0,TI(Index+1), EPSILON);
	  theComputer.AdvPerform(sign*Abscis, U0, Ui, EPSILON);
	  return;
	}
	else {
	  U0 = TI(Index+Direction);
	  Abscis -= L;
	}
	Index++;
      }
	  

      while ((Index >= 1) && (Index <= NbIntervals)) {

	L = CPnts_AbscissaPoint::Length(C, U0, TI(Index+Direction), EPSILON);
	if (Abs(L - Abscis) <= /*Precision::Confusion()*/EPSILON) {
	  theComputer.SetParameter(TI(Index+Direction));
	  return;
	}
	if(L > Abscis) {
	  if ((Ui < TI(Index)) || (Ui > TI(Index+1))) {
	    Ui = (Abscis / L) * (TI(Index+1) - U0);
	    if (Direction)
	      Ui = U0 + Ui;
	    else
	      Ui = U0 - Ui;
	  }
	  theComputer.Init(C,TI(Index),TI(Index+1), EPSILON);
	  theComputer.AdvPerform(sign*Abscis, U0, Ui, EPSILON);
	  return;
	}
	else {
	  U0 = TI(Index+Direction);
	  Abscis -= L;
	}
	if (Direction) {
	  Index++;

	}
	else {
	  Index--;

	}
      }

      // Push a little bit outside the limits (hairy !!!)

      Standard_Boolean nonperiodic = !C.IsPeriodic();
      Ui = U0 + sign*0.1;
      Standard_Real U1 = U0 + sign*.2;
      if(nonperiodic) {
	if(sign > 0) {
	  Ui = Min(Ui,C.LastParameter());
          U1 = Min(U1, C.LastParameter());
	}
	else {
	  Ui = Max(Ui,C.FirstParameter());
          U1 = Max(U1, C.FirstParameter());
	}
      }
	  
      theComputer.Init(C, U0, U1, EPSILON);
      theComputer.AdvPerform(sign*Abscis, U0, Ui, EPSILON);
      return;
    }
    break;
  }

}

//=======================================================================
//function : Length
//purpose  : 
//=======================================================================

Standard_Real GCPnts_AbscissaPoint::Length(TheCurve& C)
{
  return GCPnts_AbscissaPoint::Length(C,C.FirstParameter(), 
				      C.LastParameter());
}

//=======================================================================
//function : Length
//purpose  : 
//=======================================================================

Standard_Real GCPnts_AbscissaPoint::Length(TheCurve& C,
					   const Standard_Real Tol)
{
  return GCPnts_AbscissaPoint::Length(C,C.FirstParameter(), 
				      C.LastParameter(),Tol);
}


//=======================================================================
//function : Length
//purpose  : 
//=======================================================================

Standard_Real GCPnts_AbscissaPoint::Length(TheCurve& C,
					   const Standard_Real U1,
					   const Standard_Real U2)
{
  Standard_Real Ratio;
  GCPnts_AbscissaType Type = computeType(C,Ratio);
  switch (Type) {

  case GCPnts_LengthParametrized: 
    return Abs(U2-U1) * Ratio;
                
  case GCPnts_Parametrized: 
    return CPnts_AbscissaPoint::Length(C, U1, U2);

  case GCPnts_AbsComposite: 
    {
      Standard_Integer NbIntervals = C.NbIntervals(GeomAbs_CN);
      TColStd_Array1OfReal TI(1,NbIntervals+1);
      C.Intervals(TI,GeomAbs_CN);
      Standard_Real UU1 = Min(U1, U2);
      Standard_Real UU2 = Max(U1, U2);
      Standard_Real L = 0.0;
      for(Standard_Integer Index = 1; Index <= NbIntervals; Index++) {
	if (TI(Index)   > UU2) break;
	if (TI(Index+1) < UU1) continue;
	L += CPnts_AbscissaPoint::Length(C, 
					 Max(TI(Index),UU1),
					 Min(TI(Index+1),UU2));
      }
      return L;
    }
  }
  return RealLast();
}

//=======================================================================
//function : Length
//purpose  : 
//=======================================================================

Standard_Real GCPnts_AbscissaPoint::Length(TheCurve& C,
					   const Standard_Real U1,
					   const Standard_Real U2,
					   const Standard_Real Tol)
{
  Standard_Real Ratio;
  GCPnts_AbscissaType Type = computeType(C,Ratio);
  switch (Type) {

  case GCPnts_LengthParametrized: 
    return Abs(U2-U1) * Ratio;
                
  case GCPnts_Parametrized: 
    return CPnts_AbscissaPoint::Length(C, U1, U2, Tol);

  case GCPnts_AbsComposite: 
    {
      Standard_Integer NbIntervals = C.NbIntervals(GeomAbs_CN);
      TColStd_Array1OfReal TI(1,NbIntervals+1);
      C.Intervals(TI,GeomAbs_CN);
      Standard_Real UU1 = Min(U1, U2);
      Standard_Real UU2 = Max(U1, U2);
      Standard_Real L = 0.0;
      for(Standard_Integer Index = 1; Index <= NbIntervals; Index++) {
	if (TI(Index)   > UU2) break;
	if (TI(Index+1) < UU1) continue;
	L += CPnts_AbscissaPoint::Length(C, 
					 Max(TI(Index),UU1),
					 Min(TI(Index+1),UU2),
					 Tol);
      }
      return L;
    }
  }
  return RealLast();
}


//=======================================================================
//function : GCPnts_AbscissaPoint
//purpose  : 
//=======================================================================

GCPnts_AbscissaPoint::GCPnts_AbscissaPoint
                                  (TheCurve& C,
				   const Standard_Real   Abscissa,
				   const Standard_Real   U0)
{
  Standard_Real L = GCPnts_AbscissaPoint::Length(C);
  if (L < Precision::Confusion()) {
    Standard_ConstructionError::Raise();
  } 
  Standard_Real Abscis = Abscissa;
  Standard_Real UU0 = U0;
  Standard_Real UUi = U0 + 
    (Abscis / L) * (C.LastParameter() - C.FirstParameter());
  Compute(myComputer, C, Abscis, UU0, UUi,
	  C.Resolution(Precision::Confusion()));  
}

//=======================================================================
//function : GCPnts_AbscissaPoint
//purpose  : rbv for curvilinear parametrization
//=======================================================================

GCPnts_AbscissaPoint::GCPnts_AbscissaPoint
                                  (const Standard_Real Tol,
				   TheCurve& C,
				   const Standard_Real   Abscissa,
				   const Standard_Real   U0)
{
  Standard_Real L = GCPnts_AbscissaPoint::Length(C, Tol);
/*  if (L < Precision::Confusion()) {
    cout<<"FirstParameter = "<<C.FirstParameter()<<endl;
    cout<<"LastParameter = "<<C.LastParameter()<<endl;
    Standard_ConstructionError::Raise("GCPnts_AbscissaPoint::GCPnts_AbscissaPoint");
  } 
*/
  Standard_Real Abscis = Abscissa;
  Standard_Real UU0 = U0;
  Standard_Real UUi;
  if (L >= Precision::Confusion()) 
    UUi= U0 + 
      (Abscis / L) * (C.LastParameter() - C.FirstParameter());
  else UUi = U0;

  AdvCompute(myComputer, C, Abscis, UU0, UUi, Tol);  
}

//=======================================================================
//function : GCPnts_AbscissaPoint
//purpose  : 
//=======================================================================

GCPnts_AbscissaPoint::GCPnts_AbscissaPoint
                                  (TheCurve& C,
				   const Standard_Real   Abscissa,
				   const Standard_Real   U0,
				   const Standard_Real   Ui)
{
  Standard_Real Abscis = Abscissa;
  Standard_Real UU0 = U0;
  Standard_Real UUi = Ui;
  Compute(myComputer, C, Abscis, UU0, UUi, 
	  C.Resolution(Precision::Confusion()));
}

//=======================================================================
//function : GCPnts_AbscissaPoint
//purpose  : rbv for curvilinear parametrization
//=======================================================================

GCPnts_AbscissaPoint::GCPnts_AbscissaPoint
                                  (TheCurve& C,
				   const Standard_Real   Abscissa,
				   const Standard_Real   U0,
				   const Standard_Real   Ui,
				   const Standard_Real   Tol)
{
  Standard_Real Abscis = Abscissa;
  Standard_Real UU0 = U0;
  Standard_Real UUi = Ui;
  AdvCompute(myComputer, C, Abscis, UU0, UUi, Tol);
}