blob: 0d1a4d1297f6ba328cc1f92edfa44973e3e7fc7a (
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
|
-- File: DrawTrSurf_Polygon2D.cdl
-- Created: Fri Mar 10 10:11:24 1995
-- Author: Laurent PAINNOT
-- <lpa@metrox>
---Copyright: Matra Datavision 1995
class Polygon2D from DrawTrSurf inherits Drawable2D from Draw
---Purpose: Used to display a 2d polygon.
--
-- Optional display of nodes.
uses Polygon2D from Poly,
Display from Draw,
Drawable3D from Draw,
Interpretor from Draw,
OStream
is
Create(P: Polygon2D from Poly)
returns mutable Polygon2D from DrawTrSurf;
Polygon2D(me) returns Polygon2D from Poly;
ShowNodes(me: mutable; B: Boolean);
ShowNodes(me) returns Boolean;
DrawOn(me; dis: in out Display);
Copy(me) returns mutable Drawable3D from Draw
is redefined;
---Purpose: For variable copy.
Dump(me; S : in out OStream)
is redefined;
---Purpose: For variable dump.
Whatis(me; I : in out Interpretor from Draw)
is redefined;
---Purpose: For variable whatis command. Set as a result the
-- type of the variable.
fields
myPolygon2D: Polygon2D from Poly;
myNodes: Boolean;
end Polygon2D;
|