blob: fda999df4a1427a0d2b838f7552e6ab9ed4d68c9 (
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
|
-- File: Ellipse.cdl
-- Created: Fri Dec 1 11:11:19 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class Ellipse from StepGeom
inherits Conic from StepGeom
uses
Real from Standard,
HAsciiString from TCollection,
Axis2Placement from StepGeom
is
Create returns mutable Ellipse;
---Purpose: Returns a Ellipse
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aPosition : Axis2Placement from StepGeom;
aSemiAxis1 : Real from Standard;
aSemiAxis2 : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetSemiAxis1(me : mutable; aSemiAxis1 : Real);
SemiAxis1 (me) returns Real;
SetSemiAxis2(me : mutable; aSemiAxis2 : Real);
SemiAxis2 (me) returns Real;
fields
semiAxis1 : Real from Standard;
semiAxis2 : Real from Standard;
end Ellipse;
|