blob: db725c947698adbab0aff1d61102022af64e5a62 (
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
|
-- File: IntPolyh_Couple.cdl
-- Created: Thu Apr 8 1999
-- Author: Fabrice SERVANT
-- <fst@cleox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1999
class Couple from IntPolyh
uses
Pnt from gp
is
Create;
Create(i1,i2: Integer from Standard) ;
FirstValue(me)
returns Integer from Standard
is static;
SecondValue(me)
returns Integer from Standard
is static;
AnalyseFlagValue(me)
returns Integer from Standard
is static;
AngleValue(me)
returns Real from Standard
is static;
SetCoupleValue(me: in out; v,w: Integer from Standard)
is static;
SetAnalyseFlag(me: in out; v: Integer from Standard)
is static;
SetAngleValue(me: in out; ang: Real from Standard)
is static;
Dump(me; v: Integer from Standard)
is static;
fields
t1,t2,ia : Integer from Standard;
angle : Real from Standard;
end Couple from IntPolyh;
|