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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
-- File: ChFiDS_ElSpine.cdl
-- Created: Thu May 4 10:35:45 1995
-- Author: Laurent BOURESCHE
-- <lbo@phylox>
---Copyright: Matra Datavision 1995
class ElSpine from ChFiDS inherits Curve from Adaptor3d
---Purpose: Elementary Spine for cheminements and approximations.
uses
Pnt from gp,
Vec from gp,
Lin from gp,
Circ from gp,
Elips from gp,
Hypr from gp,
Parab from gp,
BezierCurve from Geom,
BSplineCurve from Geom,
Array1OfReal from TColStd,
SurfData from ChFiDS,
Shape from GeomAbs,
CurveType from GeomAbs,
HCurve from Adaptor3d,
Curve from Geom,
Curve from GeomAdaptor
raises
OutOfRange from Standard,
NoSuchObject from Standard,
DomainError from Standard
is
Create returns ElSpine from ChFiDS;
FirstParameter(me) returns Real from Standard
is redefined;
LastParameter(me) returns Real from Standard
is redefined;
Continuity(me) returns Shape from GeomAbs
is redefined static;
NbIntervals(me: in out; S : Shape from GeomAbs)
returns Integer is redefined static;
Intervals(me: in out;
T : in out Array1OfReal from TColStd;
S : Shape from GeomAbs)
is redefined static;
Trim(me; First, Last, Tol : Real) returns HCurve from Adaptor3d
---Purpose: Returns a curve equivalent of <me> between
-- parameters <First> and <Last>. <Tol> is used to
-- test for 3d points confusion.
is redefined;
Resolution(me; R3d : Real) returns Real
is redefined;
GetType(me) returns CurveType from GeomAbs
is redefined;
IsPeriodic(me) returns Boolean
is redefined;
SetPeriodic(me : in out ; I : Boolean from Standard) is static;
Period(me) returns Real
is redefined;
Value(me ; AbsC : Real ) returns Pnt from gp
is redefined;
D0(me ; AbsC : Real ; P : out Pnt from gp)
is redefined;
D1(me ; AbsC : Real ; P : out Pnt from gp; V1 : out Vec from gp)
is redefined;
D2(me ; AbsC : Real ; P : out Pnt from gp;
V1,V2 : out Vec from gp)
is redefined;
D3(me ; AbsC : Real ; P : out Pnt from gp;
V1,V2, V3 : out Vec from gp)
is redefined;
FirstParameter(me : in out; P : Real from Standard);
LastParameter(me : in out; P : Real from Standard);
SetOrigin(me : in out; O : Real from Standard);
FirstPointAndTgt(me; P : out Pnt from gp; T : out Vec from gp);
LastPointAndTgt(me; P : out Pnt from gp; T : out Vec from gp);
SetFirstPointAndTgt(me : in out; P : Pnt from gp; T : Vec from gp);
SetLastPointAndTgt(me : in out; P : Pnt from gp; T : Vec from gp);
SetCurve(me : in out; C : Curve from Geom);
Previous(me) returns mutable SurfData from ChFiDS;
---C++: return const &
ChangePrevious(me : in out) returns any SurfData from ChFiDS;
---C++: return &
Next(me) returns mutable SurfData from ChFiDS;
---C++: return const &
ChangeNext(me : in out) returns any SurfData from ChFiDS;
---C++: return &
Line(me) returns Lin from gp
raises
NoSuchObject from Standard
is redefined static;
Circle(me) returns Circ from gp
raises
NoSuchObject from Standard
is redefined static;
Ellipse(me) returns Elips from gp
raises
NoSuchObject from Standard
is redefined static;
Hyperbola(me) returns Hypr from gp
raises
NoSuchObject from Standard
is redefined static;
Parabola(me) returns Parab from gp
raises
NoSuchObject from Standard
is redefined static;
Bezier(me) returns BezierCurve from Geom
raises
NoSuchObject from Standard
is redefined static;
--Purpose: Warning : This will NOT make a copy of the
-- Bezier Curve : If you want to modify
-- the Curve please make a copy yourself
-- Also it will NOT trim the surface to
-- myFirst/Last.
BSpline(me) returns BSplineCurve from Geom
raises
NoSuchObject from Standard
is redefined static;
-- Purpose : Warning : This will NOT make a copy of the
-- BSpline Curve : If you want to modify
-- the Curve please make a copy yourself
-- Also it will NOT trim the surface to
-- myFirst/Last.
fields
curve : Curve from GeomAdaptor;
ptfirst : Pnt from gp;
ptlast : Pnt from gp;
tgfirst : Vec from gp;
tglast : Vec from gp;
previous : SurfData from ChFiDS;
next : SurfData from ChFiDS;
pfirst : Real from Standard;
plast : Real from Standard;
period : Real from Standard;
periodic : Boolean from Standard;
end ElSpine;
|