blob: e112a4d263f3e031917a1be6361896a7fe24ce6c (
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
|
-- File: Text3D.cdl
-- Created: Wed Apr 29 15:29:05 1992
-- Author: Remi LEQUETTE
-- <rle@sdsun1>
---Copyright: Matra Datavision 1992
class Text3D from Draw inherits Drawable3D from Draw
---Purpose:
uses Pnt from gp,
Color from Draw,
Display from Draw,
AsciiString from TCollection
is
Create(p : Pnt; T : CString; col : Color)
returns mutable Text3D from Draw;
Create(p : Pnt; T : CString; col : Color;
moveX : Real; moveY : Real)
returns mutable Text3D from Draw;
SetPnt(me : mutable; p : Pnt);
DrawOn(me; dis : in out Display);
fields
myPoint : Pnt from gp;
myColor : Color from Draw;
myText : AsciiString from TCollection;
mymoveX : Real from Standard;
mymoveY : Real from Standard;
end Text3D;
|