blob: d6726e5b0fd0e419f5180a370587cffa255fa484 (
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: PGeom2d_Conic.cdl
-- Created: Tue Apr 6 17:19:48 1993
-- Author: Philippe DAUTRY
-- <fid@mastox>
-- Copyright: Matra Datavision 1993
deferred class Conic from PGeom2d inherits Curve from PGeom2d
---Purpose : Defines the general characteristics of a conic
-- curve : Ellipse, Circle, Hyperbola, Parabola.
--
---See Also : Conic from Geom2d
uses Ax22d from gp
is
Initialize;
---Purpose: Initializes the field(s) with default value(s).
---Level: Internal
Initialize(aPosition: Ax22d from gp);
---Purpose: Initializes the field position with <aPosition>.
---Level: Internal
Position (me : mutable; aPosition : Ax22d from gp);
---Purpose : Set the value of the field position with <aPosition>.
---Level: Internal
Position (me) returns Ax22d from gp;
---Purpose : Returns the value of the field <position>.
---Level: Internal
fields
position : Ax22d from gp is protected;
end;
|