blob: 0de843abe8399e5706d29572fe699e0b66a67bd9 (
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
|
-- File: ChFiDS_Regul.cdl
-- Created: Tue Mar 21 10:47:55 1995
-- Author: Laurent BOURESCHE
-- <lbo@phylox>
---Copyright: Matra Datavision 1995
class Regul from ChFiDS
---Purpose: Storage of a curve and its 2 faces or surfaces of support.
is
Create returns Regul from ChFiDS;
SetCurve(me : in out; IC : Integer from Standard)
is static;
SetS1(me : in out;
IS1 : Integer from Standard;
IsFace : Boolean from Standard = Standard_True)
is static;
SetS2(me : in out;
IS2 : Integer from Standard;
IsFace : Boolean from Standard = Standard_True)
is static;
IsSurface1(me) returns Boolean from Standard is static;
IsSurface2(me) returns Boolean from Standard is static;
Curve(me) returns Integer from Standard is static;
S1(me) returns Integer from Standard is static;
S2(me) returns Integer from Standard is static;
fields
icurv : Integer from Standard;
is1 : Integer from Standard;
is2 : Integer from Standard;
end Regul;
|