blob: df19a1b5c89f1f6a98459687bdd0ff7c8010c545 (
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
|
-- File: Prs3d_Point.cdl
-- Created: Wed Dec 16 12:39:30 1992
-- Author: Jean Louis FRENKEL
-- <jlf@mastox>
---Copyright: Matra Datavision 1992
generic class Point from Prs3d
(anyPoint as any;
PointTool as any) -- as PointTool from Prs3d;
inherits Root from Prs3d
uses
Presentation from Prs3d,
Drawer from Prs3d,
Length from Quantity
is
Add(myclass; aPresentation: Presentation from Prs3d;
aPoint: anyPoint;
aDrawer: Drawer from Prs3d);
Add(myclass; aPresentation: Presentation from Prs3d;
aPoint: anyPoint);
Match(myclass; aPoint: anyPoint;
X,Y,Z: Length from Quantity;
aDistance: Length from Quantity)
returns Boolean from Standard;
end Point;
|