blob: 0ba9fa3e6e5293fd6b1e1f3b9e7155387b00ae5e (
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
58
59
60
61
62
63
64
65
66
67
68
|
-- File: ParTool.cdl
-- Created: Fri Mar 27 13:16:36 1992
-- Author: Laurent BUCHARD
-- <lbr@topsn3>
---Copyright: Matra Datavision 1992
deferred generic class ParTool from IntImpParGen
(ParCurve as any)
---Purpose: Template class for a tool on a parametrised curve.
uses Pnt2d from gp,
Vec2d from gp,
Lin2d from gp
is
Value (myclass; C: ParCurve; U: Real from Standard)
---Purpose: Returns the point at parameter U on the Curve C.
returns Pnt2d from gp;
D1 (myclass; C:ParCurve; U:Real from Standard ;
P: out Pnt2d; T: out Vec2d);
---Purpose: Computes the Point and the First derivative of
-- the parametric curve C at parameter U.
D2 (myclass; C:ParCurve; U:Real from Standard ;
P: out Pnt2d; T,N: out Vec2d);
---Purpose: Computes the Point, the First and the Second derivative of
-- the parametric curve C at parameter U.
EpsX (myclass; C: ParCurve)
---Purpose: Returns the valuec of the parametric tolerance
-- on the curve C.
returns Real from Standard;
NbSamples(myclass; C: ParCurve)
---Purpose: NbSamples is the number of sample point used to
-- polygonise the parametric curve on its domain.
returns Integer from Standard;
end ParTool;
|