0024624: Lost word in license statement in source files
[occt.git] / src / Bisector / Bisector_FunctionInter.cdl
CommitLineData
b311480e 1-- Created on: 1994-04-05
2-- Created by: Yves FRICAUD
3-- Copyright (c) 1994-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
d5f74e42 8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17private class FunctionInter from Bisector
18inherits FunctionWithDerivative from math
19
20 ---Purpose: 2 2
21 -- F(u) = (PC(u) - PBis1(u)) + (PC(u) - PBis2(u))
22
23uses
24 Curve from Geom2d,
25 Curve from Bisector
26 --
27
28is
29
30 Create returns FunctionInter from Bisector;
31
32 Create (C : Curve from Geom2d ;
33 Bis1 : Curve from Bisector;
34 Bis2 : Curve from Bisector)
35 returns FunctionInter from Bisector;
36
37 Perform (me : in out;
38 C : Curve from Geom2d ;
39 Bis1 : Curve from Bisector;
40 Bis2 : Curve from Bisector)
41 is static;
42
43 Value(me : in out; X : Real; F : out Real)
44 ---Purpose: Computes the values of the Functions for the variable <X>.
45 returns Boolean
46 is static;
47
48 Derivative(me : in out; X : Real; D : out Real)
49 returns Boolean;
50
51 Values(me : in out ; X : Real; F : out Real; D : out Real)
52 ---Purpose: Returns the values of the functions and the derivatives
53 -- for the variable <X>.
54 returns Boolean
55 is static;
56
57fields
58
59 curve : Curve from Geom2d;
60 bisector1 : Curve from Bisector;
61 bisector2 : Curve from Bisector;
62
63end FunctionInter;