blob: 79ef8ffe902956bf9dc5e1e57361a1d024d24eca (
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
|
-- File: GeomInt_LineTool.cdl
-- Created: Wed Feb 8 09:42:03 1995
-- Author: Jacques GOUSSARD
-- <jag@topsn2>
---Copyright: Matra Datavision 1995
class LineTool from GeomInt
---Purpose:
uses Line from IntPatch,
Point from IntPatch,
Pnt2d from gp
is
NbVertex(myclass; L: Line from IntPatch)
returns Integer from Standard;
Vertex(myclass; L:Line from IntPatch; I: Integer from Standard)
returns Point from IntPatch;
---C++: return const&
FirstParameter(myclass; L: Line from IntPatch)
returns Real from Standard;
LastParameter(myclass; L: Line from IntPatch)
returns Real from Standard;
end LineTool;
|