blob: 6b27573fa1db504d6074e23a90662ee335b677f6 (
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
|
-- File: IntStart_SOBFunction.cdl
-- Created: Wed Jun 2 13:10:29 1993
-- Author: Jacques GOUSSARD
-- <jag@topsn2>
---Copyright: Matra Datavision 1993
deferred generic class SOBFunction from IntStart
(TheArc as any)
inherits FunctionWithDerivative from math
---Purpose: Template class for the function on an arc of restriction
-- used in the SearchOnBoundaries class.
uses Pnt from gp
is
Set(me: in out; A: TheArc)
is static;
Value(me: in out; X: Real from Standard; F: out Real from Standard)
returns Boolean from Standard;
Derivative(me: in out; X: Real from Standard; D: out Real from Standard)
returns Boolean from Standard;
Values(me: in out; X: Real from Standard; F,D: out Real from Standard)
returns Boolean from Standard;
GetStateNumber(me: in out)
returns Integer from Standard
is redefined;
Valpoint(me; Index: Integer from Standard)
returns Pnt from gp
is static;
end SOBFunction;
|