blob: 3d9a88ebdcd33d69f3c9458b392b7af57202327e (
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
69
70
71
72
73
74
75
76
|
-- File: HLRBRep_CLPropsATool.cdl
-- Created: Tue Apr 20 18:34:23 1993
-- Author: Modelistation
-- <model@phylox>
---Copyright: Matra Datavision 1993
class CLPropsATool from HLRBRep
uses
Curve from HLRBRep,
Pnt2d from gp,
Vec2d from gp
is
Value(myclass; A : Address from Standard;
U : Real from Standard;
P : out Pnt2d from gp);
---Purpose: Computes the point <P> of parameter <U> on the
-- Curve from HLRBRep <C>.
--
---C++: inline
D1 (myclass; A : Address from Standard;
U : Real from Standard;
P : out Pnt2d from gp;
V1 : out Vec2d from gp);
---Purpose: Computes the point <P> and first derivative <V1>
-- of parameter <U> on the curve <C>.
--
---C++: inline
D2 (myclass; A : Address from Standard;
U : Real from Standard;
P : out Pnt2d from gp;
V1, V2 : out Vec2d from gp);
---Purpose: Computes the point <P>, the first derivative <V1>
-- and second derivative <V2> of parameter <U> on the
-- curve <C>.
--
---C++: inline
D3 (myclass; A : Address from Standard;
U : Real from Standard;
P : out Pnt2d from gp;
V1, V2, V3 : out Vec2d from gp);
---Purpose: Computes the point <P>, the first derivative <V1>,
-- the second derivative <V2> and third derivative
-- <V3> of parameter <U> on the curve <C>.
--
---C++: inline
Continuity(myclass; A : Address from Standard)
returns Integer from Standard;
---Purpose: returns the order of continuity of the curve <C>.
-- returns 1 : first derivative only is computable
-- returns 2 : first and second derivative only are
-- computable. returns 3 : first, second and third
-- are computable.
--
---C++: inline
FirstParameter(myclass; A : Address from Standard)
returns Real from Standard;
---Purpose: returns the first parameter bound of the curve.
--
---C++: inline
LastParameter(myclass; A : Address from Standard)
returns Real from Standard;
---Purpose: returns the last parameter bound of the curve.
-- FirstParameter must be less than LastParamenter.
--
---C++: inline
end CLPropsATool;
|