blob: 787586fe4403fa6f6e1a543dc6b447fa541f9bc9 (
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: Adaptor3d_GenHCurve.cdl
-- Created: Wed Feb 23 12:16:10 1994
-- Author: model
-- <model@topsn2>
---Copyright: Matra Datavision 1994
generic class GenHCurve from Adaptor3d
(TheCurve as Curve from Adaptor3d)
inherits HCurve from Adaptor3d
---Purpose: Generic class used to create a curve manipulated
-- with Handle from a curve described by the class Curve.
uses
Curve from Adaptor3d
raises
OutOfRange from Standard,
NoSuchObject from Standard,
DomainError from Standard
is
Create
---Purpose: Creates an empty GenHCurve.
returns mutable GenHCurve from Adaptor3d;
Create(C: TheCurve)
---Purpose: Creates a GenHCurve from a Curve
returns mutable GenHCurve from Adaptor3d;
Set(me: mutable; C: TheCurve)
---Purpose: Sets the field of the GenHCurve.
is static;
Curve(me)
---Purpose: Returns the curve used to create the GenHCurve.
-- This is redefined from HCurve, cannot be inline.
--
---C++: return const &
returns Curve from Adaptor3d;
GetCurve(me:mutable)
---Purpose: Returns the curve used to create the GenHCurve.
-- This is redefined from HCurve, cannot be inline.
--
---C++: return &
returns Curve from Adaptor3d;
ChangeCurve(me : mutable)
---Purpose: Returns the curve used to create the GenHCurve.
--
---C++: return &
---C++: inline
returns TheCurve;
fields
myCurve : TheCurve is protected;
end GenHCurve;
|