blob: 1fe02a17cf737ca7979e7adf9185d039bd87e42e (
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
|
-- File: LProp_CurAndInf.cdl
-- Created: Fri Sep 2 11:27:40 1994
-- Author: Yves FRICAUD
-- <yfr@phylox>
---Copyright: Matra Datavision 1994
class CurAndInf from LProp
---Purpose: Stores the parameters of a curve 2d or 3d corresponding
-- to the curvature's extremas and the Inflection's Points.
uses
CIType from LProp,
SequenceOfReal from TColStd,
SequenceOfCIType from LProp
raises
OutOfRange from Standard
is
Create;
AddInflection (me : in out; Param : Real)
is static;
AddExtCur (me : in out; Param : Real; IsMin : Boolean)
is static;
Clear (me : in out)
is static;
IsEmpty (me) returns Boolean
is static;
NbPoints (me) returns Integer
---Purpose: Returns the number of points.
-- The Points are stored to increasing parameter.
is static;
Parameter (me; N : Integer) returns Real
---Purpose: Returns the parameter of the Nth point.
raises
OutOfRange from Standard
---Purpose: raises if N not in the range [1,NbPoints()]
is static;
Type (me; N : Integer) returns CIType
---Purpose: Returns
-- - MinCur if the Nth parameter corresponds to
-- a minimum of the radius of curvature.
-- - MaxCur if the Nth parameter corresponds to
-- a maximum of the radius of curvature.
-- - Inflection if the parameter corresponds to
-- a point of inflection.
raises
OutOfRange from Standard
---Purpose: raises if N not in the range [1,NbPoints()]
is static;
fields
theParams : SequenceOfReal from TColStd;
theTypes : SequenceOfCIType from LProp;
end CurAndInf;
|