summaryrefslogtreecommitdiff
path: root/src/MgtGeom2d/MgtGeom2d.cxx
blob: 7cb72fa4837f402fa96ddf3aa27db77f97ea3085 (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
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
// File:	MgtGeom2d.cxx
// Created:	Wed Apr 14 17:28:55 1993
// Author:	Philippe DAUTRY
//		<fid@mastox>
// Copyright:	Matra Datavision 1993


#include <MgtGeom2d.ixx>

#include <Standard_Type.hxx>

#include <PColStd_HArray1OfInteger.hxx>
#include <PColStd_HArray2OfInteger.hxx>
#include <PColStd_HArray1OfReal.hxx>
#include <PColStd_HArray2OfReal.hxx>

#include <TColStd_Array1OfInteger.hxx>
#include <TColStd_Array2OfInteger.hxx>
#include <TColStd_HArray1OfInteger.hxx>

#include <TColStd_Array1OfReal.hxx>
#include <TColStd_Array2OfReal.hxx>
#include <TColStd_HArray1OfReal.hxx>
#include <TColStd_HArray2OfReal.hxx>

#include <TColgp_Array1OfPnt2d.hxx>
#include <TColgp_Array2OfPnt2d.hxx>
#include <TColgp_HArray1OfPnt2d.hxx>
#include <TColgp_HArray2OfPnt2d.hxx>

#include <PColgp_HArray1OfPnt2d.hxx>
#include <PColgp_HArray2OfPnt2d.hxx>

#include <gp_Vec.hxx>
#include <gp_Ax1.hxx>

//modif wok++
#include <gp_Circ2d.hxx>
#include <Standard_NullObject.hxx>
#include <gp_Lin2d.hxx>

// *******************************************************************
// The following methods are subroutines used to copy elements
// from structures to other structures, as array1 or array2.
// *******************************************************************

// *******************************************************************
// Structures from TCollection to structures from PCollection.
// *******************************************************************

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the gp_Pnt2d
//           from an Array1 from TColgp (TCollection)
//           to an HArray1 from PColgp (PCollection)
//=======================================================================

static Handle(PColgp_HArray1OfPnt2d) ArrayCopy
       (const TColgp_Array1OfPnt2d& TArray)
{
  Standard_Integer Lower = TArray.Lower();
  Standard_Integer Upper = TArray.Upper();
  Standard_Integer Index;
  Handle(PColgp_HArray1OfPnt2d) PArray = 
    new PColgp_HArray1OfPnt2d(Lower, Upper);
  for (Index = Lower; Index <= Upper; Index++) {
    PArray->SetValue(Index, TArray(Index));
  }
  return PArray;
}

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the gp_Pnt2d
//           from an Array2 from TColgp (TCollection)
//           to an HArray2 from PColgp (PCollection)
//=======================================================================
#ifdef DEB
static Handle(PColgp_HArray2OfPnt2d) ArrayCopy
       (const TColgp_Array2OfPnt2d& TArray)
{
  Standard_Integer LowerRow = TArray.LowerRow();
  Standard_Integer UpperRow = TArray.UpperRow();
  Standard_Integer LowerCol = TArray.LowerCol();
  Standard_Integer UpperCol = TArray.UpperCol();
  Standard_Integer IndexRow, IndexCol;
  Handle(PColgp_HArray2OfPnt2d) PArray =
    new PColgp_HArray2OfPnt2d(LowerRow, UpperRow, LowerCol, UpperCol);
  for (IndexRow = LowerRow; IndexRow <= UpperRow; IndexRow++) {
    for (IndexCol = LowerCol; IndexCol <= UpperCol; IndexCol++) {
      PArray->SetValue(IndexRow, IndexCol, TArray(IndexRow, IndexCol));
    }
  }
  return PArray;
}
#endif
//=======================================================================
//function : ArrayCopy
//purpose  : Copy the Standard_Real
//           from an Array1 from TColStd (TCollection)
//           to an SingleArray from PCollection
//=======================================================================

static Handle(PColStd_HArray1OfReal) ArrayCopy
       (const TColStd_Array1OfReal& TArray)
{
  Standard_Integer Lower = TArray.Lower();
  Standard_Integer Upper = TArray.Upper();
  Standard_Integer Index;
  Handle(PColStd_HArray1OfReal) PArray =
    new PColStd_HArray1OfReal(Lower, Upper);
  for (Index = Lower; Index <= Upper; Index++) {
    PArray->SetValue(Index, TArray(Index));
  }
  return PArray;
}

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the Standard_Real
//           from an Array2 from TColStd (TCollection)
//           to an DoubleArray from PCollection
//=======================================================================
#ifdef DEB
static Handle(PColStd_HArray2OfReal) ArrayCopy
       (const TColStd_Array2OfReal& TArray)
{
  Standard_Integer LowerRow = TArray.LowerRow();
  Standard_Integer UpperRow = TArray.UpperRow();
  Standard_Integer LowerCol = TArray.LowerCol();
  Standard_Integer UpperCol = TArray.UpperCol();
  Standard_Integer IndexRow, IndexCol;
  Handle(PColStd_HArray2OfReal) PArray =
    new PColStd_HArray2OfReal(LowerRow, UpperRow, LowerCol, UpperCol);
  for (IndexRow = LowerRow; IndexRow <= UpperRow; IndexRow++) {
    for (IndexCol = LowerCol; IndexCol <= UpperCol; IndexCol++) {
      PArray->SetValue(IndexRow, IndexCol, TArray(IndexRow, IndexCol));
    }
  }
  return PArray;
}
#endif
//=======================================================================
//function : ArrayCopy
//purpose  : Copy the Standard_Integer
//           from an Array1 from TColStd (TCollection)
//           to an SingleArray from PCollection
//=======================================================================

static Handle(PColStd_HArray1OfInteger) ArrayCopy
       (const TColStd_Array1OfInteger& TArray)
{
  Standard_Integer Lower = TArray.Lower();
  Standard_Integer Upper = TArray.Upper();
  Standard_Integer Index;
  Handle(PColStd_HArray1OfInteger) PArray =
    new PColStd_HArray1OfInteger(Lower, Upper);
  for (Index = Lower; Index <= Upper; Index++) {
    PArray->SetValue(Index, TArray(Index));
  }
  return PArray;
}

// *******************************************************************
// Structures from PCollection to structures from TCollection.
// *******************************************************************

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the gp_Pnt2d
//           from an HArray1 from PColgp (PCollection)
//           to an Array1 from TColgp (TCollection)
//=======================================================================

static void ArrayCopy
  (const Handle(PColgp_HArray1OfPnt2d)& PArray,
   TColgp_Array1OfPnt2d& TArray)
{
  Standard_Integer Lower = PArray->Lower();
  Standard_Integer Upper = PArray->Upper();
  Standard_Integer Index;
  for (Index = Lower; Index <= Upper; Index++) {
    TArray(Index) = PArray->Value(Index);
  }
}

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the gp_Pnt2d
//           from an HArray2 from PColgp (PCollection)
//           to an Array2 from TColgp (TCollection)
//=======================================================================

// Unused :
#ifdef DEB
static void ArrayCopy
  (const Handle(PColgp_HArray2OfPnt2d)& PArray,
   TColgp_Array2OfPnt2d& TArray)
{
  Standard_Integer LowerRow = TArray.LowerRow();
  Standard_Integer UpperRow = TArray.UpperRow();
  Standard_Integer LowerCol = TArray.LowerCol();
  Standard_Integer UpperCol = TArray.UpperCol();
  Standard_Integer IndexRow, IndexCol;
  for (IndexRow = LowerRow; IndexRow <= UpperRow; IndexRow++) {
    for (IndexCol = LowerCol; IndexCol <= UpperCol; IndexCol++) {
      TArray(IndexRow, IndexCol) = PArray->Value(IndexRow, IndexCol);
    }
  }
}
#endif

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the Standard_Real
//           from an SingleArray from PCollection
//           to an Array1 from TColStd (TCollection)
//=======================================================================

static void ArrayCopy
  (const Handle(PColStd_HArray1OfReal)& PArray,
   TColStd_Array1OfReal& TArray)
{
  Standard_Integer Lower = PArray->Lower();
  Standard_Integer Upper = PArray->Upper();
  Standard_Integer Index;
  for (Index = Lower; Index <= Upper; Index++) {
    TArray(Index) = PArray->Value(Index);
  }
}

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the Standard_Real
//           from an DoubleArray from PCollection
//           to an Array2 from TColStd (TCollection)
//=======================================================================

// Unused :
#ifdef DEB
static void ArrayCopy
  (const Handle(PColStd_HArray2OfReal)& PArray,
   TColStd_Array2OfReal& TArray)
{
  Standard_Integer LowerRow = TArray.LowerRow();
  Standard_Integer UpperRow = TArray.UpperRow();
  Standard_Integer LowerCol = TArray.LowerCol();
  Standard_Integer UpperCol = TArray.UpperCol();
  Standard_Integer IndexRow, IndexCol;
  for (IndexRow = LowerRow; IndexRow <= UpperRow; IndexRow++) {
    for (IndexCol = LowerCol; IndexCol <= UpperCol; IndexCol++) {
      TArray(IndexRow, IndexCol) = PArray->Value(IndexRow, IndexCol);
    }
  }
}
#endif

//=======================================================================
//function : ArrayCopy
//purpose  : Copy the Standard_Integer
//           from an SingleArray from PCollection
//           to an Array1 from TColStd (TCollection)
//=======================================================================

static void ArrayCopy
  (const Handle(PColStd_HArray1OfInteger)& PArray,
   TColStd_Array1OfInteger& TArray)
{
  Standard_Integer Lower = PArray->Lower();
  Standard_Integer Upper = PArray->Upper();
  Standard_Integer Index;
  for (Index = Lower; Index <= Upper; Index++) {
    TArray(Index) = PArray->Value(Index);
  }
}



// *******************************************************************
// Here is the implementation of the package methods.
// *******************************************************************


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_AxisPlacement to a Geom2d_AxisPlacement.
//=======================================================================

Handle(Geom2d_AxisPlacement)  MgtGeom2d::Translate
       (const Handle(PGeom2d_AxisPlacement)& PObj)
{
  return new Geom2d_AxisPlacement(PObj->Axis());
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_AxisPlacement to a PGeom2d_AxisPlacement.
//=======================================================================

Handle(PGeom2d_AxisPlacement)  MgtGeom2d::Translate
       (const Handle(Geom2d_AxisPlacement)& TObj)
{
  return new PGeom2d_AxisPlacement(TObj->Ax2d());
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_BSplineCurve to a Geom2d_BSplineCurve.
//=======================================================================

Handle(Geom2d_BSplineCurve)  MgtGeom2d::Translate
       (const Handle(PGeom2d_BSplineCurve)& PObj)
{
  Handle(Geom2d_BSplineCurve)  TBSplC;

  Handle(PColgp_HArray1OfPnt2d) oldPoles = PObj->Poles();
  TColgp_Array1OfPnt2d newPoles (oldPoles->Lower(),oldPoles->Upper());
  ArrayCopy(oldPoles,newPoles);

  Handle(PColStd_HArray1OfInteger) oldMult = PObj->Multiplicities();
  TColStd_Array1OfInteger newMultiplicities(oldMult->Lower(),oldMult->Upper());
  ArrayCopy(oldMult,newMultiplicities);

  Handle(PColStd_HArray1OfReal) oldKnots = PObj->Knots();
  TColStd_Array1OfReal newKnots (oldKnots->Lower(),oldKnots->Upper());
  ArrayCopy(oldKnots,newKnots);

  if (PObj->Rational()) {
    Handle(PColStd_HArray1OfReal) oldWeights = PObj->Weights();
    TColStd_Array1OfReal newWeights (oldWeights->Lower(),oldWeights->Upper());
    ArrayCopy(oldWeights,newWeights);
    // modified by NIZHNY-MKK  Fri Oct 17 11:20:32 2003.BEGIN
    TBSplC = new Geom2d_BSplineCurve
      //       (newPoles, newWeights, newKnots, newMultiplicities, PObj->SpineDegree());
      (newPoles, newWeights, newKnots, newMultiplicities, 
       PObj->SpineDegree(), PObj->Periodic());
    // modified by NIZHNY-MKK  Fri Oct 17 11:20:38 2003.END
  }
  else {
    // modified by NIZHNY-MKK  Thu Oct 16 18:19:22 2003.BEGIN
    TBSplC = new Geom2d_BSplineCurve
      //       (newPoles, newKnots, newMultiplicities, PObj->SpineDegree());
      (newPoles, newKnots, newMultiplicities, 
       PObj->SpineDegree(), PObj->Periodic());
    // modified by NIZHNY-MKK  Fri Oct 17 11:20:52 2003.END
  }
  // modified by NIZHNY-MKK  Thu Oct 16 18:19:12 2003
  //   if (PObj->Periodic()) TBSplC->SetPeriodic();
  return TBSplC;
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_BSplineCurve to a PGeom2d_BSplineCurve.
//=======================================================================

Handle(PGeom2d_BSplineCurve)  MgtGeom2d::Translate
       (const Handle(Geom2d_BSplineCurve)& TObj)
{
  Standard_Integer Upper;

  Upper = TObj->NbPoles();

  TColgp_Array1OfPnt2d oldPoles(1, Upper);
  TObj->Poles(oldPoles);
  Handle(PColgp_HArray1OfPnt2d) newPPoles = ArrayCopy(oldPoles);
  
  Handle(PColStd_HArray1OfReal) newPWeights;
  if (TObj->IsRational()) {
    TColStd_Array1OfReal oldWeights(1, Upper);
    TObj->Weights(oldWeights);
    newPWeights = ArrayCopy(oldWeights);
  }
  
  Upper = TObj->NbKnots();

  TColStd_Array1OfReal oldKnots(1, Upper);
  TObj->Knots(oldKnots);
  Handle(PColStd_HArray1OfReal) newPKnots = ArrayCopy(oldKnots);

  TColStd_Array1OfInteger oldMultiplicities(1, Upper);
  TObj->Multiplicities(oldMultiplicities);
  Handle(PColStd_HArray1OfInteger) newPMultiplicities =
    ArrayCopy(oldMultiplicities);

  
  Handle(PGeom2d_BSplineCurve) PBSplC = 
    new PGeom2d_BSplineCurve(TObj->IsRational(),
			     TObj->IsPeriodic(),
			     TObj->Degree(),
			     newPPoles,
			     newPWeights,
			     newPKnots,
			     newPMultiplicities);
  return PBSplC;
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_BezierCurve to a Geom2d_BezierCurve.
//=======================================================================

Handle(Geom2d_BezierCurve)  MgtGeom2d::Translate
       (const Handle(PGeom2d_BezierCurve)& PObj)
{
  Handle(Geom2d_BezierCurve) TBzC;

  Handle(PColgp_HArray1OfPnt2d) oldPoles = PObj->Poles();
  TColgp_Array1OfPnt2d newPoles (oldPoles->Lower(),oldPoles->Upper());
  ArrayCopy(oldPoles,newPoles);

  if (PObj->Rational()) {
    Handle(PColStd_HArray1OfReal) oldWeights = PObj->Weights();
    TColStd_Array1OfReal newWeights (oldWeights->Lower(),oldWeights->Upper());
    ArrayCopy(oldWeights,newWeights);
    TBzC = new Geom2d_BezierCurve(newPoles, newWeights);
  }
  else {
    TBzC = new Geom2d_BezierCurve(newPoles);
  }
  return TBzC;
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_BezierCurve to a PGeom2d_BezierCurve.
//=======================================================================

Handle(PGeom2d_BezierCurve)  MgtGeom2d::Translate
       (const Handle(Geom2d_BezierCurve)& TObj)
{
  Standard_Integer Upper;

  Upper = TObj->NbPoles();

  TColgp_Array1OfPnt2d oldPoles(1, Upper);
  TObj->Poles(oldPoles);
  Handle(PColgp_HArray1OfPnt2d) newPPoles = ArrayCopy(oldPoles);
  
  Handle(PColStd_HArray1OfReal) newPWeights;
  if (TObj->IsRational()) {
    TColStd_Array1OfReal oldWeights(1, Upper);
    TObj->Weights(oldWeights);
    newPWeights = ArrayCopy(oldWeights);
  }
  
  Handle(PGeom2d_BezierCurve) PBzC = new PGeom2d_BezierCurve
    (newPPoles,
     newPWeights,
     TObj->IsRational());
  return PBzC;
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_CartesianPoint to a Geom2d_CartesianPoint.
//=======================================================================

Handle(Geom2d_CartesianPoint)  MgtGeom2d::Translate
       (const Handle(PGeom2d_CartesianPoint)& PObj)
{ return new Geom2d_CartesianPoint(PObj->Pnt()); }


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_CartesianPoint to a PGeom2d_CartesianPoint.
//=======================================================================

Handle(PGeom2d_CartesianPoint)  MgtGeom2d::Translate
       (const Handle(Geom2d_CartesianPoint)& TObj)
{ return new PGeom2d_CartesianPoint(TObj->Pnt2d()); }


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Circle to a Geom2d_Circle.
//=======================================================================

Handle(Geom2d_Circle)  MgtGeom2d::Translate(const Handle(PGeom2d_Circle)& PObj)
{
  return new Geom2d_Circle(PObj->Position(),
			   PObj->Radius());
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Circle to a PGeom2d_Circle.
//=======================================================================

Handle(PGeom2d_Circle)  MgtGeom2d::Translate(const Handle(Geom2d_Circle)& TObj)
{
  return new PGeom2d_Circle(TObj->Circ2d().Position(),TObj->Circ2d().Radius());
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Curve to a Geom2d_Curve.
//=======================================================================

Handle(Geom2d_Curve)  MgtGeom2d::Translate(const Handle(PGeom2d_Curve)& PObj)
{
  Handle(Standard_Type) CurveType = PObj->DynamicType();

  if (CurveType == STANDARD_TYPE(PGeom2d_Line)) {
    Handle(PGeom2d_Line)& TLine = 
      (Handle(PGeom2d_Line)&) PObj;
    return MgtGeom2d::Translate(TLine);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_Circle)) {
    Handle(PGeom2d_Circle)& TCircle = 
      (Handle(PGeom2d_Circle)&) PObj;
    return MgtGeom2d::Translate(TCircle);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_Ellipse)) {
    Handle(PGeom2d_Ellipse)& TEllipse = 
      (Handle(PGeom2d_Ellipse)&) PObj;
    return MgtGeom2d::Translate(TEllipse);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_Hyperbola)) {
    Handle(PGeom2d_Hyperbola)& THyperbola = 
      (Handle(PGeom2d_Hyperbola)&) PObj;
    return MgtGeom2d::Translate(THyperbola);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_Parabola)) {
    Handle(PGeom2d_Parabola)& TParabola = 
      (Handle(PGeom2d_Parabola)&) PObj;
    return MgtGeom2d::Translate(TParabola);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_BezierCurve)) {
    Handle(PGeom2d_BezierCurve)& TBezierCurve = 
      (Handle(PGeom2d_BezierCurve)&) PObj;
    return MgtGeom2d::Translate(TBezierCurve);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_BSplineCurve)) {
    Handle(PGeom2d_BSplineCurve)& TBSplineCurve = 
      (Handle(PGeom2d_BSplineCurve)&) PObj;
    return MgtGeom2d::Translate(TBSplineCurve);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_TrimmedCurve)) {
    Handle(PGeom2d_TrimmedCurve)& TTrimmedCurve = 
      (Handle(PGeom2d_TrimmedCurve)&) PObj;
    return MgtGeom2d::Translate(TTrimmedCurve);
  }
  else if (CurveType ==  STANDARD_TYPE(PGeom2d_OffsetCurve)) {
    Handle(PGeom2d_OffsetCurve)& TOffsetCurve = 
      (Handle(PGeom2d_OffsetCurve)&) PObj;
    return MgtGeom2d::Translate(TOffsetCurve);
  }
  else {
    cout << "Unknown Geom2d curve type ???? " << endl;
    Standard_NullObject::Raise("No mapping for the current Persistent Curve");
  }
// POP pour NT
  Handle(Geom2d_Curve) dummy;
  return dummy;
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Curve to a PGeom2d_Curve.
//=======================================================================

Handle(PGeom2d_Curve)  MgtGeom2d::Translate(const Handle(Geom2d_Curve)& TObj)
{
  Handle(Standard_Type) CurveType = TObj->DynamicType();

  if (CurveType == STANDARD_TYPE(Geom2d_Line)) {
    Handle(Geom2d_Line)& PLine = 
      (Handle(Geom2d_Line)&) TObj;
    return MgtGeom2d::Translate(PLine);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_Circle)) {
    Handle(Geom2d_Circle)& PCircle = 
      (Handle(Geom2d_Circle)&) TObj;
    return MgtGeom2d::Translate(PCircle);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_Ellipse)) {
    Handle(Geom2d_Ellipse)& PEllipse = 
      (Handle(Geom2d_Ellipse)&) TObj;
    return MgtGeom2d::Translate(PEllipse);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_Hyperbola)) {
    Handle(Geom2d_Hyperbola)& PHyperbola = 
      (Handle(Geom2d_Hyperbola)&) TObj;
    return MgtGeom2d::Translate(PHyperbola);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_Parabola)) {
    Handle(Geom2d_Parabola)& PParabola = 
      (Handle(Geom2d_Parabola)&) TObj;
    return MgtGeom2d::Translate(PParabola);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_BezierCurve)) {
    Handle(Geom2d_BezierCurve)& PBezierCurve = 
      (Handle(Geom2d_BezierCurve)&) TObj;
    return MgtGeom2d::Translate(PBezierCurve);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_BSplineCurve)) {
    Handle(Geom2d_BSplineCurve)& PBSplineCurve = 
      (Handle(Geom2d_BSplineCurve)&) TObj;
    return MgtGeom2d::Translate(PBSplineCurve);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_TrimmedCurve)) {
    Handle(Geom2d_TrimmedCurve)& PTrimmedCurve = 
      (Handle(Geom2d_TrimmedCurve)&) TObj;
    return MgtGeom2d::Translate(PTrimmedCurve);
  }
  else if (CurveType ==  STANDARD_TYPE(Geom2d_OffsetCurve)) {
    Handle(Geom2d_OffsetCurve)& POffsetCurve = 
      (Handle(Geom2d_OffsetCurve)&) TObj;
    return MgtGeom2d::Translate(POffsetCurve);
  }
  else {
    cout << "Unknown Geom2d curve type ???? " << endl;
    Standard_NullObject::Raise("No mapping for the current Transient Curve");
  }
// POP pour NT
  Handle(PGeom2d_Curve) dummy;
  return dummy;
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Direction to a Geom2d_Direction.
//=======================================================================

Handle(Geom2d_Direction)  MgtGeom2d::Translate
       (const Handle(PGeom2d_Direction)& PObj)
{
  gp_Vec2d vec = PObj->Vec();
  return new Geom2d_Direction(vec.X(), vec.Y()); 
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Direction to a PGeom2d_Direction.
//=======================================================================

Handle(PGeom2d_Direction)  MgtGeom2d::Translate
(const Handle(Geom2d_Direction)& TObj)
{ return new PGeom2d_Direction(TObj->Vec2d()); }


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Ellipse to a Geom2d_Ellipse.
//=======================================================================

Handle(Geom2d_Ellipse)  MgtGeom2d::Translate
(const Handle(PGeom2d_Ellipse)& PObj)
{
  return new Geom2d_Ellipse(PObj->Position(),
			    PObj->MajorRadius(),
			    PObj->MinorRadius());
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Ellipse to a PGeom2d_Ellipse.
//=======================================================================

Handle(PGeom2d_Ellipse)  MgtGeom2d::Translate
(const Handle(Geom2d_Ellipse)& TObj)
{
  return new PGeom2d_Ellipse(TObj->Position(),
			     TObj->MajorRadius(),
			     TObj->MinorRadius());
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Hyperbola to a Geom2d_Hyperbola.
//=======================================================================

Handle(Geom2d_Hyperbola)  MgtGeom2d::Translate
(const Handle(PGeom2d_Hyperbola)& PObj)
{
  return new Geom2d_Hyperbola(PObj->Position(),
			      PObj->MajorRadius(),
			      PObj->MinorRadius());
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Hyperbola to a PGeom2d_Hyperbola.
//=======================================================================

Handle(PGeom2d_Hyperbola)  MgtGeom2d::Translate
(const Handle(Geom2d_Hyperbola)& TObj)
{
  return new PGeom2d_Hyperbola(TObj->Position(),
			       TObj->MajorRadius(),
			       TObj->MinorRadius());
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Line to a Geom2d_Line.
//=======================================================================

Handle(Geom2d_Line)  MgtGeom2d::Translate(const Handle(PGeom2d_Line)& PObj)
{ return new Geom2d_Line(PObj->Position()); }


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Line to a PGeom2d_Line.
//=======================================================================

Handle(PGeom2d_Line)  MgtGeom2d::Translate(const Handle(Geom2d_Line)& TObj)
{
  return new PGeom2d_Line(TObj->Lin2d().Position());
}

//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_OffsetCurve to a Geom2d_OffsetCurve.
//=======================================================================

Handle(Geom2d_OffsetCurve)  MgtGeom2d::Translate
(const Handle(PGeom2d_OffsetCurve)& PObj)
{
  return new Geom2d_OffsetCurve(MgtGeom2d::Translate(PObj->BasisCurve()),
				PObj->OffsetValue());
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_OffsetCurve to a PGeom2d_OffsetCurve.
//=======================================================================

Handle(PGeom2d_OffsetCurve)  MgtGeom2d::Translate
(const Handle(Geom2d_OffsetCurve)& TObj)
{
  return new PGeom2d_OffsetCurve(MgtGeom2d::Translate(TObj->BasisCurve()),
				 TObj->Offset());
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Parabola to a Geom2d_Parabola.
//=======================================================================

Handle(Geom2d_Parabola)  MgtGeom2d::Translate
(const Handle(PGeom2d_Parabola)& PObj)
{
  return new Geom2d_Parabola(PObj->Position(),
			     PObj->FocalLength());
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Parabola to a PGeom2d_Parabola.
//=======================================================================

Handle(PGeom2d_Parabola)  MgtGeom2d::Translate
(const Handle(Geom2d_Parabola)& TObj)
{
  return new PGeom2d_Parabola(TObj->Position(),
			      TObj->Focal());
}

//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Point to a Geom2d_Point.
//           Optimized valid until new subtypes of Geom2dPoint exist
//=======================================================================

Handle(Geom2d_Point)  MgtGeom2d::Translate
(const Handle(PGeom2d_Point)& PObj)
{
/*
  Handle(Geom2d_Point) Geom2dP;
  Handle(Standard_Type) PointType = PObj->DynamicType();

  if (PointType == STANDARD_TYPE(PGeom2d_CartesianPoint)) {
    Handle(PGeom2d_CartesianPoint) PCPoint = 
      Handle(PGeom2d_CartesianPoint)::DownCast(PObj);
    Geom2dP = MgtGeom2d::Translate(PCPoint);
  }
  return Geom2dP;
*/
  Handle(PGeom2d_CartesianPoint)& PCPoint = 
    (Handle(PGeom2d_CartesianPoint)&) PObj;
  return new Geom2d_CartesianPoint(PCPoint->Pnt());
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Point to a PGeom2d_Point.
//           Optimized valid until new subtypes of Geom2dPoint exist
//=======================================================================

Handle(PGeom2d_Point)  MgtGeom2d::Translate
(const Handle(Geom2d_Point)& TObj)
{
/*
  Handle(PGeom2d_Point) PGeom2dP;
  Handle(Standard_Type) PointType = TObj->DynamicType();

  if (PointType == STANDARD_TYPE(Geom2d_CartesianPoint)) {
    Handle(Geom2d_CartesianPoint) TCPoint = 
      Handle(Geom2d_CartesianPoint)::DownCast(TObj);
    PGeom2dP = MgtGeom2d::Translate(TCPoint);
  }
  return PGeom2dP;
*/
  Handle(Geom2d_CartesianPoint)& TCPoint = 
    (Handle(Geom2d_CartesianPoint)&) TObj;
  return new PGeom2d_CartesianPoint(TCPoint->Pnt2d());
}



//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_Transformation to a Geom2d_Transformation.
//=======================================================================

Handle(Geom2d_Transformation)  MgtGeom2d::Translate
(const Handle(PGeom2d_Transformation)& PObj)
{ return new Geom2d_Transformation(PObj->Trsf()); }


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_Transformation to a PGeom2d_Transformation.
//=======================================================================

Handle(PGeom2d_Transformation)  MgtGeom2d::Translate
(const Handle(Geom2d_Transformation)& TObj)
{ return new PGeom2d_Transformation(TObj->Trsf2d()); }


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_TrimmedCurve to a Geom2d_TrimmedCurve.
//=======================================================================

Handle(Geom2d_TrimmedCurve)  MgtGeom2d::Translate
(const Handle(PGeom2d_TrimmedCurve)& PObj)
{
  return new Geom2d_TrimmedCurve(MgtGeom2d::Translate(PObj->BasisCurve()),
				 PObj->FirstU(),
				 PObj->LastU(),
				 Standard_True); // Warning : will desappear
}


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_TrimmedCurve to a PGeom2d_TrimmedCurve.
//=======================================================================

Handle(PGeom2d_TrimmedCurve)  MgtGeom2d::Translate
(const Handle(Geom2d_TrimmedCurve)& TObj)
{
  return new PGeom2d_TrimmedCurve(MgtGeom2d::Translate(TObj->BasisCurve()),
				  TObj->FirstParameter(),
				  TObj->LastParameter());
}


//=======================================================================
//function : Translate
//purpose  : Translates a PGeom2d_VectorWithMagnitude to a
//           Geom2d_VectorWithMagnitude.
//=======================================================================

Handle(Geom2d_VectorWithMagnitude)  MgtGeom2d::Translate
(const Handle(PGeom2d_VectorWithMagnitude)& PObj)
{ return new Geom2d_VectorWithMagnitude(PObj->Vec()); }


//=======================================================================
//function : Translate
//purpose  : Translates a Geom2d_VectorWithMagnitude to a
//           PGeom2d_VectorWithMagnitude.
//=======================================================================

Handle(PGeom2d_VectorWithMagnitude)  MgtGeom2d::Translate
(const Handle(Geom2d_VectorWithMagnitude)& TObj)
{ return new PGeom2d_VectorWithMagnitude(TObj->Vec2d()); }