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
|
-- File: GeomFill_SweepSectionGenerator.cdl
-- Created: Mon Feb 28 14:00:01 1994
-- Author: Bruno DUMORTIER
-- <dub@fuegox>
---Copyright: Matra Datavision 1994
class SweepSectionGenerator from GeomFill
---Purpose: class for instantiation of AppBlend.
-- evaluate the sections of a sweep surface.
uses
HCurve from Adaptor3d,
Ax1 from gp,
Vec from gp,
Trsf from gp,
Array1OfPnt from TColgp,
Array1OfVec from TColgp,
Array1OfPnt2d from TColgp,
Array1OfVec2d from TColgp,
Array1OfReal from TColStd,
Array1OfInteger from TColStd,
Curve from Geom,
BSplineCurve from Geom,
SequenceOfCurve from TColGeom,
SequenceOfTrsf from GeomFill
raises
RangeError from Standard
is
Create returns SweepSectionGenerator from GeomFill;
Create( Path : Curve from Geom;
Radius : Real from Standard)
---Purpose: Create a sweept surface with a constant radius.
returns SweepSectionGenerator from GeomFill;
Create( Path : Curve from Geom;
FirstSect : Curve from Geom )
---Purpose: Create a sweept surface with a constant section
returns SweepSectionGenerator from GeomFill;
Create( Path : Curve from Geom;
FirstSect : Curve from Geom;
LastSect : Curve from Geom )
---Purpose: Create a sweept surface with an evolving section
-- The section evoluate from First to Last Section
returns SweepSectionGenerator from GeomFill;
Create( Path : Curve from Geom;
Curve1 : Curve from Geom;
Curve2 : Curve from Geom;
Radius : Real from Standard )
---Purpose: Create a pipe with a constant radius with 2
-- guide-line.
returns SweepSectionGenerator from GeomFill;
Create( Path : HCurve from Adaptor3d;
Curve1 : HCurve from Adaptor3d;
Curve2 : HCurve from Adaptor3d;
Radius : Real from Standard )
---Purpose: Create a pipe with a constant radius with 2
-- guide-line.
returns SweepSectionGenerator from GeomFill;
Init( me : in out;
Path : Curve from Geom;
Radius : Real from Standard)
is static;
Init( me : in out;
Path : Curve from Geom;
FirstSect : Curve from Geom)
is static;
Init( me : in out;
Path : Curve from Geom;
FirstSect : Curve from Geom;
LastSect : Curve from Geom)
is static;
Init( me : in out;
Path : Curve from Geom;
Curve1 : Curve from Geom;
Curve2 : Curve from Geom;
Radius : Real from Standard)
is static;
Init( me : in out;
Path : HCurve from Adaptor3d;
Curve1 : HCurve from Adaptor3d;
Curve2 : HCurve from Adaptor3d;
Radius : Real from Standard )
is static;
Perform( me : in out;
Polynomial : Boolean from Standard = Standard_False)
is static;
GetShape(me; NbPoles : out Integer from Standard;
NbKnots : out Integer from Standard;
Degree : out Integer from Standard;
NbPoles2d : out Integer from Standard)
is static;
Knots(me; TKnots: out Array1OfReal from TColStd)
is static;
Mults(me; TMults: out Array1OfInteger from TColStd)
is static;
NbSections(me)
---C++: inline
returns Integer from Standard
is static;
Section(me; P : Integer from Standard;
Poles : out Array1OfPnt from TColgp;
DPoles : out Array1OfVec from TColgp;
Poles2d : out Array1OfPnt2d from TColgp;
DPoles2d : out Array1OfVec2d from TColgp;
Weigths : out Array1OfReal from TColStd;
DWeigths : out Array1OfReal from TColStd)
---Purpose: Used for the first and last section
-- The method returns Standard_True if the derivatives
-- are computed, otherwise it returns Standard_False.
returns Boolean from Standard
is static;
Section(me; P : Integer from Standard;
Poles : out Array1OfPnt from TColgp;
Poles2d : out Array1OfPnt2d from TColgp;
Weigths : out Array1OfReal from TColStd)
is static;
Transformation(me; Index : Integer from Standard)
returns Trsf from gp
---C++: return const &
raises
RangeError from Standard
---Purpose: raised if <Index> not in the range [1,NbSections()]
is static;
Parameter(me; P: Integer)
---Purpose: Returns the parameter of <P>, to impose it for the
-- approximation.
returns Real from Standard
is static;
fields
myPath : BSplineCurve from Geom;
myFirstSect : BSplineCurve from Geom;
myLastSect : BSplineCurve from Geom;
myAdpPath : HCurve from Adaptor3d;
myAdpFirstSect : HCurve from Adaptor3d;
myAdpLastSect : HCurve from Adaptor3d;
myCircPathAxis : Ax1 from gp;
myRadius : Real from Standard;
myIsDone : Boolean from Standard;
myNbSections : Integer from Standard;
myTrsfs : SequenceOfTrsf from GeomFill;
myType : Integer from Standard;
myPolynomial : Boolean from Standard;
end SweepSectionGenerator;
|