blob: 85227f72c8317ec9be5ce18271c0d95155bb53c2 (
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
55
56
57
|
-- File: TestTopOpeDraw_DrawableC3D.cdl
-- Created: Fri Dec 1 17:56:57 1995
-- Author: Jean Yves LEBEY
-- <jyl@meteox>
---Copyright: Matra Datavision 1995
class DrawableC3D from TestTopOpeDraw inherits Curve from DrawTrSurf
---Purpose:
uses
Interpretor from Draw,
Curve from Geom,
Color from Draw,
Display from Draw,
Text3D from Draw,
CString from Standard,
Pnt from gp
is
Create (C : Curve from Geom; CColor : Color from Draw)
returns mutable DrawableC3D from TestTopOpeDraw;
Create (C : Curve from Geom; CColor : Color from Draw;
Text : CString; TextColor : Color from Draw)
returns mutable DrawableC3D from TestTopOpeDraw;
Create (C : Curve from Geom; CColor : Color from Draw;
Text : CString; TextColor : Color from Draw;
Discret : Integer; Deflection : Real; DrawMode : Integer;
DispOrigin : Boolean from Standard = Standard_True)
returns mutable DrawableC3D from TestTopOpeDraw;
Pnt(me) returns Pnt from gp is virtual;
ChangePnt(me : mutable; P : Pnt);
ChangeCurve(me : mutable; C : Curve from Geom);
ChangeText(me : mutable; T : CString from Standard);
Name(me : mutable; N : CString) is redefined;
Whatis(me; I : in out Interpretor from Draw) is redefined;
---Purpose: For variable whatis command.
DrawOn(me; dis : in out Display from Draw) is redefined;
fields
myText3D : Text3D from Draw is protected;
myText :CString from Standard is protected;
myTextColor : Color from Draw;
end DrawableC3D;
|