blob: cf2c7de71cf32686e72a16bef73b8fa25f1cf27e (
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
|
// File: Geom2dAdaptor_Curve.lxx
// Created: Fri Jun 4 11:03:44 1993
// Author: Bruno DUMORTIER
// <dub@topsn3>
#include <gp_Pnt2d.hxx>
#include <Geom2d_Curve.hxx>
//=======================================================================
//function : FirstParameter
//purpose :
//=======================================================================
inline Standard_Real Geom2dAdaptor_Curve::FirstParameter() const
{
return myFirst;
}
//=======================================================================
//function : LastParameter
//purpose :
//=======================================================================
inline Standard_Real Geom2dAdaptor_Curve::LastParameter() const
{
return myLast;
}
//=======================================================================
//function : Curve
//purpose :
//=======================================================================
inline const Handle(Geom2d_Curve)& Geom2dAdaptor_Curve::Curve() const
{
return myCurve;
}
//=======================================================================
//function : GetType
//purpose :
//=======================================================================
inline GeomAbs_CurveType Geom2dAdaptor_Curve::GetType() const
{
return myTypeCurve;
}
|