blob: 7ff36df600d34bd8a038caf318596b535974f8be (
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
|
-- File: PGeom2d_TrimmedCurve.cdl
-- Created: Tue Apr 6 17:34:06 1993
-- Author: Philippe DAUTRY
-- <fid@mastox>
-- Copyright: Matra Datavision 1993
class TrimmedCurve from PGeom2d inherits BoundedCurve from PGeom2d
---Purpose :
-- Defines a portion of a curve limited by two values of
-- parameters inside the parametric domain of the curve.
--
---See Also : TrimmedCurve from Geom2d.
uses Curve from PGeom2d
is
Create returns mutable TrimmedCurve from PGeom2d;
---Purpose: Creates a TrimmedCurve with default values.
---Level: Advanced
Create (
aBasisCurve: Curve from PGeom2d;
aFirstU, aLastU: Real from Standard)
returns mutable TrimmedCurve from PGeom2d;
---Purpose : Creates a TrimmedCurve with these field values.
---Level: Advanced
FirstU(me : mutable; aFirstU: Real from Standard);
---Purpose : Set the value of the field firstU with <aFirstU>.
---Level: Advanced
FirstU(me) returns Real from Standard;
---Purpose : Returns the value of the field firstU.
---Level: Advanced
LastU(me : mutable; aLastU: Real from Standard);
---Purpose : Set the value of the field lastU with <aLastU>.
---Level: Advanced
LastU(me) returns Real from Standard;
---Purpose : Returns the value of the field lastU.
---Level: Advanced
BasisCurve (me: mutable; aBasisCurve: Curve from PGeom2d);
---Purpose : Set the value of the field basisCurve with <aBasisCurve>.
-- This curve can be a trimmed curve.
---Level: Advanced
BasisCurve (me) returns Curve from PGeom2d;
---Purpose : Returns the value of the field basisCurve.
-- This curve can be a trimmed curve.
---Level: Advanced
fields
basisCurve : Curve from PGeom2d;
firstU : Real from Standard;
lastU : Real from Standard;
end;
|