blob: 753ad2e54df50ae9b6056ad32742a48f6c3ef3ea (
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
|
--- File: FairCurve_DistributionOfEnergy.cdl
-- Created: Mon Jan 22 15:11:20 1996
-- Author: Philippe MANGIN
-- <pmn@sgi29>
---Copyright: Matra Datavision 1996
deferred class DistributionOfEnergy from FairCurve
inherits FunctionSet from math
---Purpose: Abstract class to use the Energy of an FairCurve
uses Vector from math,
FunctionSet from math,
HArray1OfReal from TColStd,
HArray1OfPnt2d from TColgp
is
--- redefined methods
NbVariables(me)
---Purpose: returns the number of variables of the function.
returns Integer is redefined;
NbEquations(me)
---Purpose: returns the number of equations of the function.
returns Integer is redefined;
--- new methods
Initialize( BSplOrder : Integer;
FlatKnots : HArray1OfReal;
Poles : HArray1OfPnt2d;
DerivativeOrder : Integer;
NbValAux : Integer = 0);
SetDerivativeOrder(me :in out; DerivativeOrder : Integer);
fields
MyBSplOrder : Integer is protected;
MyFlatKnots : HArray1OfReal is protected;
MyPoles : HArray1OfPnt2d is protected;
MyDerivativeOrder : Integer is protected;
MyNbVar : Integer is protected;
MyNbEqua : Integer is protected;
MyNbValAux : Integer is protected;
end DistributionOfEnergy ;
|