blob: 97ba6fb59e9c9f2a7e36ecaf499f9737f869a84b (
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
|
// File: Geom2dAdaptor.cxx
// Created: Mon May 30 18:53:01 1994
// Author: Remi LEQUETTE
// <rle@bravox>
#include <Geom2dAdaptor.ixx>
#include <Geom2d_Line.hxx>
#include <Geom2d_Circle.hxx>
#include <Geom2d_Ellipse.hxx>
#include <Geom2d_Parabola.hxx>
#include <Geom2d_Hyperbola.hxx>
#include <Geom2d_BezierCurve.hxx>
#include <Geom2d_BSplineCurve.hxx>
#include <Geom2d_TrimmedCurve.hxx>
#include <gp_Lin2d.hxx>
#include <gp_Circ2d.hxx>
#include <gp_Elips2d.hxx>
#include <gp_Parab2d.hxx>
#include <gp_Hypr2d.hxx>
//=======================================================================
//function : MakeCurve
//purpose :
//=======================================================================
Handle(Geom2d_Curve) Geom2dAdaptor::MakeCurve
(const Adaptor2d_Curve2d& HC)
{
Handle(Geom2d_Curve) C2D;
switch (HC.GetType()) {
case GeomAbs_Line:
{
Handle(Geom2d_Line) GL = new Geom2d_Line(HC.Line());
C2D = GL;
}
break;
case GeomAbs_Circle:
{
Handle(Geom2d_Circle) GL = new Geom2d_Circle(HC.Circle());
C2D = GL;
}
break;
case GeomAbs_Ellipse:
{
Handle(Geom2d_Ellipse) GL = new Geom2d_Ellipse(HC.Ellipse());
C2D = GL;
}
break;
case GeomAbs_Parabola:
{
Handle(Geom2d_Parabola) GL = new Geom2d_Parabola(HC.Parabola());
C2D = GL;
}
break;
case GeomAbs_Hyperbola:
{
Handle(Geom2d_Hyperbola) GL = new Geom2d_Hyperbola(HC.Hyperbola());
C2D = GL;
}
break;
case GeomAbs_BezierCurve:
{
C2D = HC.Bezier();
}
break;
case GeomAbs_BSplineCurve:
{
C2D = HC.BSpline();
}
break;
case GeomAbs_OtherCurve:
Standard_DomainError::Raise("Geom2dAdaptor::MakeCurve, OtherCurve");
}
// trim the curve if necassary.
if (! C2D.IsNull() &&
((HC.FirstParameter() != C2D->FirstParameter()) ||
(HC.LastParameter() != C2D->LastParameter()))) {
C2D = new Geom2d_TrimmedCurve
(C2D,HC.FirstParameter(),HC.LastParameter());
}
return C2D;
}
|