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
|
-- File: GeomFill_Profiler.cdl
-- Created: Thu Feb 17 10:44:36 1994
-- Author: Bruno DUMORTIER
-- <dub@fuegox>
---Copyright: Matra Datavision 1994
class Profiler from GeomFill
---Purpose: Evaluation of the common BSplineProfile of a group
-- of curves from Geom. All the curves will have the
-- same degree, the same knot-vector, so the same
-- number of poles.
uses
Array1OfReal from TColStd,
Array1OfInteger from TColStd,
Array1OfPnt from TColgp,
Curve from Geom,
SequenceOfCurve from TColGeom
raises
NotDone from StdFail,
DomainError from Standard
is
Create returns Profiler from GeomFill;
Delete(me:out) is virtual;
---C++: alias "Standard_EXPORT virtual ~GeomFill_Profiler(){Delete() ; }"
AddCurve( me : in out;
Curve : in Curve from Geom)
is static;
Perform(me : in out ;
PTol : in Real from Standard)
---Purpose: Converts all curves to BSplineCurves.
-- Set them to the common profile.
-- <PTol> is used to compare 2 knots.
is virtual;
Degree(me) returns Integer from Standard
raises
NotDone from StdFail
---Purpose: Raises if not yet perform
is static;
IsPeriodic(me) returns Boolean from Standard
---C++: inline
is static;
NbPoles(me) returns Integer from Standard
raises
NotDone from StdFail
---Purpose: Raises if not yet perform
is static;
Poles(me; Index : in Integer from Standard;
Poles : in out Array1OfPnt from TColgp)
---Purpose: returns in <Poles> the poles of the BSplineCurve
-- from index <Index> adjusting to the current profile.
raises
NotDone from StdFail,
---Purpose: Raises if not yet perform
DomainError from Standard
---Purpose: Raises if <Index> not in the range [1,NbCurves]
-- if the length of <Poles> is not equal to
-- NbPoles().
is static;
Weights(me; Index : in Integer from Standard;
Weights : in out Array1OfReal from TColStd)
---Purpose: returns in <Weights> the weights of the BSplineCurve
-- from index <Index> adjusting to the current profile.
raises
NotDone from StdFail,
---Purpose: Raises if not yet perform
DomainError from Standard
---Purpose: Raises if <Index> not in the range [1,NbCurves] or
-- if the length of <Weights> is not equal to
-- NbPoles().
is static;
NbKnots(me) returns Integer from Standard
raises
NotDone from StdFail
---Purpose: Raises if not yet perform
is static;
KnotsAndMults(me;
Knots : in out Array1OfReal from TColStd;
Mults : in out Array1OfInteger from TColStd)
raises
NotDone from StdFail,
---Purpose: Raises if not yet perform
DomainError from Standard
---Purpose: Raises if the lengthes of <Knots> and <Mults> are
-- not equal to NbKnots().
is static;
Curve(me; Index : Integer from Standard)
returns Curve from Geom
---C++: return const&
---C++: inline
is static;
fields
mySequence : SequenceOfCurve from TColGeom is protected;
myIsDone : Boolean from Standard is protected;
myIsPeriodic : Boolean from Standard is protected;
end Profiler;
|