blob: 8f1bd59f236b7159aa619da0bf35a8ecee086add (
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
|
-- File: ChFiDS_CircSection.cdl
-- Created: Wed Mar 6 15:47:44 1996
-- Author: Laurent BOURESCHE
-- <lbo@phylox>
---Copyright: Matra Datavision 1996
class CircSection from ChFiDS
---Purpose: A Section of fillet.
uses
Circ from gp,
Lin from gp
is
Create;
Set(me : in out;
C : Circ from gp;
F,L : Real from Standard)
is static;
Set(me : in out;
C : Lin from gp;
F,L : Real from Standard)
is static;
Get(me;
C : out Circ from gp;
F,L : out Real from Standard)
is static;
Get(me;
C : out Lin from gp;
F,L : out Real from Standard)
is static;
fields
myCirc : Circ from gp;
myLin : Lin from gp;
myF : Real from Standard;
myL : Real from Standard;
end CircSection;
|