blob: 42ba9bf82cfb2406006fdb365bb878030ae8a45e (
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
|
// File: PGeom_TrimmedCurve.cxx
// Created: Thu Mar 4 11:06:35 1993
// Author: Philippe DAUTRY
// <fid@sdsun2>
// Copyright: Matra Datavision 1993
#include <PGeom_TrimmedCurve.ixx>
//=======================================================================
//function : PGeom_TrimmedCurve
//purpose :
//=======================================================================
PGeom_TrimmedCurve::PGeom_TrimmedCurve()
{}
//=======================================================================
//function : PGeom_TrimmedCurve
//purpose :
//=======================================================================
PGeom_TrimmedCurve::PGeom_TrimmedCurve
(const Handle(PGeom_Curve)& aBasisCurve,
const Standard_Real aFirstU,
const Standard_Real aLastU) :
basisCurve(aBasisCurve),
firstU(aFirstU),
lastU(aLastU)
{}
//=======================================================================
//function : FirstU
//purpose :
//=======================================================================
void PGeom_TrimmedCurve::FirstU(const Standard_Real aFirstU)
{ firstU = aFirstU; }
//=======================================================================
//function : FirstU
//purpose :
//=======================================================================
Standard_Real PGeom_TrimmedCurve::FirstU() const
{ return firstU; }
//=======================================================================
//function : LastU
//purpose :
//=======================================================================
void PGeom_TrimmedCurve::LastU(const Standard_Real aLastU)
{ lastU = aLastU; }
//=======================================================================
//function : LastU
//purpose :
//=======================================================================
Standard_Real PGeom_TrimmedCurve::LastU() const
{ return lastU; }
//=======================================================================
//function : BasisCurve
//purpose :
//=======================================================================
void PGeom_TrimmedCurve::BasisCurve(const Handle(PGeom_Curve)& aBasisCurve)
{ basisCurve = aBasisCurve; }
//=======================================================================
//function : BasisCurve
//purpose :
//=======================================================================
Handle(PGeom_Curve) PGeom_TrimmedCurve::BasisCurve() const
{ return basisCurve; }
|