blob: 0306d95e86af638857b00bb11e9f983499d32738 (
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
|
-- File: RectangularTrimmedSurface.cdl
-- Created: Fri Dec 1 11:11:26 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class RectangularTrimmedSurface from StepGeom
inherits BoundedSurface from StepGeom
uses
Surface from StepGeom,
Real from Standard,
Boolean from Standard,
HAsciiString from TCollection
is
Create returns mutable RectangularTrimmedSurface;
---Purpose: Returns a RectangularTrimmedSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aU1 : Real from Standard;
aU2 : Real from Standard;
aV1 : Real from Standard;
aV2 : Real from Standard;
aUsense : Boolean from Standard;
aVsense : Boolean from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetBasisSurface(me : mutable; aBasisSurface : mutable Surface);
BasisSurface (me) returns mutable Surface;
SetU1(me : mutable; aU1 : Real);
U1 (me) returns Real;
SetU2(me : mutable; aU2 : Real);
U2 (me) returns Real;
SetV1(me : mutable; aV1 : Real);
V1 (me) returns Real;
SetV2(me : mutable; aV2 : Real);
V2 (me) returns Real;
SetUsense(me : mutable; aUsense : Boolean);
Usense (me) returns Boolean;
SetVsense(me : mutable; aVsense : Boolean);
Vsense (me) returns Boolean;
fields
basisSurface : Surface from StepGeom;
u1 : Real from Standard;
u2 : Real from Standard;
v1 : Real from Standard;
v2 : Real from Standard;
usense : Boolean from Standard;
vsense : Boolean from Standard;
end RectangularTrimmedSurface;
|