blob: 5e6b03fb6f7abd97be4c1a0ce5cd26c56a06d78f (
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
|
-- File: DrawTrSurf_Polygon3D.cdl
-- Created: Thu Mar 9 17:00:59 1995
-- Author: Laurent PAINNOT
-- <lpa@metrox>
---Copyright: Matra Datavision 1995
class Polygon3D from DrawTrSurf inherits Drawable3D from Draw
---Purpose: Used to display a 3d polygon.
--
-- Optional display of nodes.
uses Polygon3D from Poly,
Display from Draw,
Interpretor from Draw,
OStream
is
Create(P: Polygon3D from Poly)
returns mutable Polygon3D from DrawTrSurf;
Polygon3D(me) returns Polygon3D 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
myPolygon3D: Polygon3D from Poly;
myNodes: Boolean;
end Polygon3D;
|