summaryrefslogtreecommitdiff
path: root/src/PGeom/PGeom_RectangularTrimmedSurface.cxx
blob: 5ea448f15931b0cb83d3d2b4c64e3d4a64c7c56a (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// File:	PGeom_RectangularTrimmedSurface.cxx
// Created:	Thu Mar  4 10:12:26 1993
// Author:	Philippe DAUTRY
//		<fid@sdsun2>
// Copyright:	Matra Datavision 1993


#include <PGeom_RectangularTrimmedSurface.ixx>

//=======================================================================
//function : PGeom_RectangularTrimmedSurface
//purpose  : 
//=======================================================================

PGeom_RectangularTrimmedSurface::PGeom_RectangularTrimmedSurface()
{}


//=======================================================================
//function : PGeom_RectangularTrimmedSurface
//purpose  : 
//=======================================================================

PGeom_RectangularTrimmedSurface::PGeom_RectangularTrimmedSurface
  (const Handle(PGeom_Surface)& aBasisSurface,
   const Standard_Real aFirstU,
   const Standard_Real aLastU,
   const Standard_Real aFirstV,
   const Standard_Real aLastV) :
  basisSurface(aBasisSurface),
  firstU(aFirstU),
  lastU(aLastU),
  firstV(aFirstV),
  lastV(aLastV)
{}


//=======================================================================
//function : BasisSurface
//purpose  : 
//=======================================================================

void  PGeom_RectangularTrimmedSurface::BasisSurface
  (const Handle(PGeom_Surface)& aBasisSurface)
{ basisSurface = aBasisSurface;}


//=======================================================================
//function : BasisSurface
//purpose  : 
//=======================================================================

Handle(PGeom_Surface)  PGeom_RectangularTrimmedSurface::BasisSurface() const 
{ return basisSurface; }


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

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


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

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


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

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


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

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


//=======================================================================
//function : FirstV
//purpose  : 
//=======================================================================

void  PGeom_RectangularTrimmedSurface::FirstV(const Standard_Real aFirstV)
{ firstV = aFirstV; }


//=======================================================================
//function : FirstV
//purpose  : 
//=======================================================================

Standard_Real  PGeom_RectangularTrimmedSurface::FirstV() const 
{ return firstV; }


//=======================================================================
//function : LastV
//purpose  : 
//=======================================================================

void  PGeom_RectangularTrimmedSurface::LastV(const Standard_Real aLastV)
{ lastV = aLastV; }


//=======================================================================
//function : LastV
//purpose  : 
//=======================================================================

Standard_Real  PGeom_RectangularTrimmedSurface::LastV() const 
{ return lastV; }