blob: cbbe7004c90c4802ecf9816eae01e9500e4d7cf3 (
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: Marker3D.cdl
-- Created: Thu Apr 23 17:01:50 1992
-- Author: Modelistation
-- <model@sdsun1>
---Copyright: Matra Datavision 1992
class Marker3D from Draw inherits Drawable3D from Draw
---Purpose:
uses
Pnt from gp,
Color from Draw,
MarkerShape from Draw,
Display from Draw
is
Create(P : Pnt from gp; T : MarkerShape from Draw; C : Color from Draw;
ISize : Integer = 5) returns mutable Marker3D from Draw;
Create(P : Pnt from gp; T : MarkerShape from Draw; C : Color from Draw;
RSize : Real) returns mutable Marker3D from Draw;
ChangePos(me : mutable) returns Pnt from gp;
---C++: return &
---Purpose: myPos field
DrawOn(me; dis : in out Display from Draw);
PickReject(me; X,Y,Prec : Real) returns Boolean
---Purpose: Returs always false
is redefined;
fields
myPos : Pnt from gp;
myCol : Color from Draw;
myTyp : MarkerShape from Draw;
mySiz : Integer;
myRSiz : Real;
myIsRSiz : Boolean;
end Marker3D;
|