Integration of OCCT 6.5.0 from SVN
[occt.git] / src / Prs3d / Prs3d_Point.cdl
CommitLineData
7fd59977 1-- File: Prs3d_Point.cdl
2-- Created: Wed Dec 16 12:39:30 1992
3-- Author: Jean Louis FRENKEL
4-- <jlf@mastox>
5---Copyright: Matra Datavision 1992
6
7generic class Point from Prs3d
8 (anyPoint as any;
9 PointTool as any) -- as PointTool from Prs3d;
10
11inherits Root from Prs3d
12
13uses
14 Presentation from Prs3d,
15 Drawer from Prs3d,
16 Length from Quantity
17is
18 Add(myclass; aPresentation: Presentation from Prs3d;
19 aPoint: anyPoint;
20 aDrawer: Drawer from Prs3d);
21
22 Add(myclass; aPresentation: Presentation from Prs3d;
23 aPoint: anyPoint);
24
25 Match(myclass; aPoint: anyPoint;
26 X,Y,Z: Length from Quantity;
27 aDistance: Length from Quantity)
28 returns Boolean from Standard;
29
30end Point;
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46