blob: 1ba265cf6c2afa21509ba4c8b48a46c19f76551c (
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
|
// File: GeomAdaptor_Curve.lxx
// Created: Thu Apr 29 11:54:32 1993
// Author: Bruno DUMORTIER
// Copyright: OPEN CASCADE 1993
#include <gp_Pnt.hxx>
#include <Geom_Curve.hxx>
//=======================================================================
//function : GeomAdaptor_Curve
//purpose :
//=======================================================================
inline GeomAdaptor_Curve::GeomAdaptor_Curve()
{
}
//=======================================================================
//function : GeomAdaptor_Curve
//purpose :
//=======================================================================
inline GeomAdaptor_Curve::GeomAdaptor_Curve(const Handle(Geom_Curve)& C)
{
Load(C,C->FirstParameter(),C->LastParameter());
}
//=======================================================================
//function : GeomAdaptor_Curve
//purpose :
//=======================================================================
inline GeomAdaptor_Curve::GeomAdaptor_Curve(const Handle(Geom_Curve)& C,
const Standard_Real UFirst,
const Standard_Real ULast)
{
if (UFirst > ULast) Standard_ConstructionError::Raise();
Load(C,UFirst,ULast);
}
//=======================================================================
//function : Load
//purpose :
//=======================================================================
inline void GeomAdaptor_Curve::Load(const Handle(Geom_Curve)& C)
{
Load(C,C->FirstParameter(),C->LastParameter());
}
//=======================================================================
//function : FirstParameter
//purpose :
//=======================================================================
inline Standard_Real GeomAdaptor_Curve::FirstParameter() const
{
return myFirst;
}
//=======================================================================
//function : LastParameter
//purpose :
//=======================================================================
inline Standard_Real GeomAdaptor_Curve::LastParameter() const
{
return myLast;
}
//=======================================================================
//function : Curve
//purpose :
//=======================================================================
inline const Handle(Geom_Curve)& GeomAdaptor_Curve::Curve() const
{
return myCurve;
}
//=======================================================================
//function : GetType
//purpose :
//=======================================================================
inline GeomAbs_CurveType GeomAdaptor_Curve::GetType() const
{
return myTypeCurve;
}
|