summaryrefslogtreecommitdiff
path: root/src/PGeom2d/PGeom2d_TrimmedCurve.cxx
blob: 9faa9d9ca2062d3ddcd4f0b7af5fc5e0501d3678 (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:	PGeom2d_TrimmedCurve.cxx
// Created:	Thu Mar  4 11:06:35 1993
// Author:	Philippe DAUTRY
//		<fid@sdsun2>
// Copyright:	Matra Datavision 1993


#include <PGeom2d_TrimmedCurve.ixx>

//=======================================================================
//function : PGeom2d_TrimmedCurve
//purpose  : 
//=======================================================================

PGeom2d_TrimmedCurve::PGeom2d_TrimmedCurve()
{}


//=======================================================================
//function : PGeom2d_TrimmedCurve
//purpose  : 
//=======================================================================

PGeom2d_TrimmedCurve::PGeom2d_TrimmedCurve
  (const Handle(PGeom2d_Curve)& aBasisCurve,
   const Standard_Real aFirstU,
   const Standard_Real aLastU) :
  basisCurve(aBasisCurve),
  firstU(aFirstU),
  lastU(aLastU)
{}


//=======================================================================
//function : FirstU
//purpose  : 
//=======================================================================

void  PGeom2d_TrimmedCurve::FirstU(const Standard_Real aFirstU)
{ firstU = aFirstU; }


//=======================================================================
//function : FirstU
//purpose  : 
//=======================================================================

Standard_Real  PGeom2d_TrimmedCurve::FirstU() const 
{ return firstU; }


//=======================================================================
//function : LastU
//purpose  : 
//=======================================================================

void  PGeom2d_TrimmedCurve::LastU(const Standard_Real aLastU)
{ lastU = aLastU; }


//=======================================================================
//function : LastU
//purpose  : 
//=======================================================================

Standard_Real  PGeom2d_TrimmedCurve::LastU() const 
{ return lastU; }


//=======================================================================
//function : BasisCurve
//purpose  : 
//=======================================================================

void  PGeom2d_TrimmedCurve::BasisCurve(const Handle(PGeom2d_Curve)& aBasisCurve)
{ basisCurve = aBasisCurve; }


//=======================================================================
//function : BasisCurve
//purpose  : 
//=======================================================================

Handle(PGeom2d_Curve)  PGeom2d_TrimmedCurve::BasisCurve() const 
{ return basisCurve; }