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
|
-- File: Plate_Plate.cdl
-- Created: Wed Oct 18 12:44:50 1995
-- Author: Andre LIEUTIER
-- <ds@sgi63>
---Copyright: Matra Datavision 1995
-- 26-Mar-96 : xab non inlinage des methodes
-- 19-Fev-97 : jct ajout des methodes UVBox et UVConstraints pour l'etude G1134
-- 24-Mar-98 : alr prise en compte nouveaux types de contraintes (Linear..Constraint)
--
class Plate from Plate
---Purpose: This class implement a variationnal spline algorithm able
-- to define a two variable function satisfying some constraints
-- and minimizing an energy like criterion.
uses
SequenceOfPinpointConstraint from Plate,
SequenceOfLinearXYZConstraint from Plate,
SequenceOfLinearScalarConstraint from Plate,
PinpointConstraint from Plate,
LinearXYZConstraint from Plate,
LinearScalarConstraint from Plate,
GtoCConstraint from Plate,
FreeGtoCConstraint from Plate,
GlobalTranslationConstraint from Plate,
LineConstraint from Plate,
PlaneConstraint from Plate,
SampledCurveConstraint from Plate,
XY from gp,
XYZ from gp,
SequenceOfXY from TColgp,
Matrix from math,
HArray2OfXYZ from TColgp
is
Create returns Plate;
Create (Ref : Plate from Plate) returns Plate;
Copy(me: in out; Ref: Plate)
---C++: alias operator=
---C++: return &
returns Plate;
-- basics Constraints
--
--
Load (me : in out; PConst : PinpointConstraint);
Load (me : in out; LXYZConst : LinearXYZConstraint);
Load (me : in out; LScalarConst : LinearScalarConstraint);
-- Geometric Constraints
--
Load (me : in out; GTConst : GlobalTranslationConstraint);
Load (me : in out; LConst : LineConstraint);
Load (me : in out; PConst : PlaneConstraint);
Load (me : in out; SCConst : SampledCurveConstraint);
-- Specific Geometric Constraints
--
Load (me : in out; GtoCConst : GtoCConstraint);
Load (me : in out; FGtoCConst : FreeGtoCConstraint);
SolveTI(me : in out; ord : Integer = 4; anisotropie : Real = 1.0);
IsDone(me)
---Purpose: returns True if all has been correctly done.
returns Boolean;
destroy(me : in out);
---C++: alias ~
Init(me: in out );
---Purpose: reset the Plate in the initial state
-- ( same as after Create())
Evaluate(me ; point2d : XY from gp )
returns XYZ from gp ;
EvaluateDerivative(me; point2d: XY from gp;
iu,iv : Integer)
returns XYZ from gp ;
CoefPol(me; Coefs: out HArray2OfXYZ from TColgp);
SetPolynomialPartOnly(me : in out; PPOnly : Boolean = Standard_True);
Continuity(me) returns Integer;
-- private methods :
--
SolEm (me ; point2d : XY from gp; iu,iv : Integer)
returns Real is private;
Polm (me; point2d : XY from gp; iu,iv,idu,idv : Integer)
---C++: inline
returns Real is private;
Deru(me; index : Integer)
---C++: inline
---C++: return &
returns Integer is private;
Derv(me; index : Integer)
---C++: inline
---C++: return &
returns Integer is private;
Solution(me; index : Integer)
---C++: inline
---C++: return &
returns XYZ is private;
Points(me; index : Integer)
---C++: inline
---C++: return &
returns XY is private;
UVBox(me ; UMin,UMax,VMin,VMax : out Real );
UVConstraints(me; Seq : out SequenceOfXY from TColgp );
SolveTI1(me : in out; IterationNumber : Integer) is private;
SolveTI2(me : in out; IterationNumber : Integer) is private;
SolveTI3(me : in out; IterationNumber : Integer) is private;
fillXYZmatrix(me; mat : in out Matrix from math;i0,j0,ncc1,ncc2 : Integer) is private;
fields
order : Integer;
n_el, n_dim : Integer;
solution, points, deru, derv : Address ;
OK : Boolean;
myConstraints : SequenceOfPinpointConstraint;
myLXYZConstraints : SequenceOfLinearXYZConstraint;
myLScalarConstraints : SequenceOfLinearScalarConstraint;
ddu : Real[10];
ddv : Real[10];
maxConstraintOrder : Integer;
PolynomialPartOnly : Boolean;
end;
|