Files
OCCT/src/Extrema/Extrema_ExtCC2d.cdl
aml 4bbaf12b67 0024608: Development of methods of global optimization of multivariable function
math_GlobOptMin - new global optimization minimization algorithm
Extrema_GlobOptFuncCC, Extrema_ExtCC, Extrema_ExtCC2d - implementation of GlobOptMin algorithm to extrema curve / curve
Extrema_CurveCache - deleted as obsolete code
ChFi3d_Builder.cxx  - fixed processing of extrema
math_NewtonMinimum.cxx - fixed step to avoid incorrect behavior
Test cases modification to meet new behavior.
2014-05-15 17:51:44 +04:00

160 lines
4.7 KiB
Plaintext

-- Created on: 1994-07-06
-- Created by: Laurent PAINNOT
-- Copyright (c) 1994-1999 Matra Datavision
-- Copyright (c) 1999-2014 OPEN CASCADE SAS
--
-- This file is part of Open CASCADE Technology software library.
--
-- This library is free software; you can redistribute it and/or modify it under
-- the terms of the GNU Lesser General Public License version 2.1 as published
-- by the Free Software Foundation, with special exception defined in the file
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
-- distribution for complete text of the license and disclaimer of any warranty.
--
-- Alternatively, this file may be used under the terms of Open CASCADE
-- commercial license or contractual agreement.
class ExtCC2d from Extrema
---Purpose: It calculates all the distance between two curves.
-- These distances can be maximum or minimum.
uses POnCurv2d from Extrema,
SequenceOfPOnCurv2d from Extrema,
ExtElC2d from Extrema,
Pnt2d from gp,
HArray1OfPnt2d from TColgp,
SequenceOfReal from TColStd,
Curve2d from Adaptor2d,
Curve2dTool from Extrema,
ECC2d from Extrema
raises InfiniteSolutions from StdFail,
NotDone from StdFail,
OutOfRange from Standard
is
Create returns ExtCC2d;
Create (C1: Curve2d from Adaptor2d; C2: Curve2d from Adaptor2d;
TolC1: Real = 1.0e-10; TolC2: Real = 1.0e-10) returns ExtCC2d;
---Purpose: It calculates all the distances.
Create (C1: Curve2d from Adaptor2d;
C2: Curve2d from Adaptor2d;
U1: Real from Standard;
U2: Real from Standard;
V1: Real from Standard;
V2: Real from Standard;
TolC1: Real = 1.0e-10;
TolC2: Real = 1.0e-10) returns ExtCC2d;
---Purpose: It calculates all the distances.
Initialize(me: in out; C2: Curve2d from Adaptor2d;
V1, V2: Real from Standard;
TolC1: Real = 1.0e-10;
TolC2: Real = 1.0e-10)
---Purpose: initializes the fields.
is static;
Perform(me: in out; C1: Curve2d from Adaptor2d;
U1, U2: Real from Standard)
is static;
IsDone (me) returns Boolean
---Purpose: Returns True if the distances are found.
is static;
NbExt (me) returns Integer
---Purpose: Returns the number of extremum distances.
raises NotDone from StdFail,
-- if IsDone(me)=False.
InfiniteSolutions from StdFail
-- if IsParallel(me)= True.
is static;
IsParallel (me) returns Boolean
---Purpose: Returns True if the two curves are parallel.
raises NotDone from StdFail
-- if IsDone(me)=False.
is static;
SquareDistance (me; N: Integer =1) returns Real
---Purpose: Returns the value of the Nth extremum square distance.
raises NotDone from StdFail,
-- if IsDone(me)=False.
InfiniteSolutions from StdFail,
-- if IsParallel(me)= True and N > 1.
OutOfRange
-- if N < 1 or N > NbExt(me)
is static;
Points (me; N: Integer; P1,P2: out POnCurv2d)
---Purpose: Returns the points of the Nth extremum distance.
-- P1 is on the first curve, P2 on the second one.
raises NotDone from StdFail,
-- if IsDone(me)=False.
InfiniteSolutions from StdFail,
-- if IsParallel(me)= True.
OutOfRange
-- if N < 1 or N > NbExt(me)
is static;
TrimmedSquareDistances(me; dist11, distP12, distP21, distP22: out Real;
P11, P12, P21, P22: out Pnt2d)
---Purpose: if the curve is a trimmed curve,
-- dist11 is a square distance between the point on C1
-- of parameter FirstParameter and the point of
-- parameter FirstParameter on C2.
is static;
Results(me: in out; AlgExt: ExtElC2d from Extrema;
Ut11, Ut12, Ut21, Ut22: Real;
Period1 : Real from Standard = 0.0;
Period2 : Real from Standard = 0.0)
is static protected;
Results(me: in out;AlgExt: ECC2d from Extrema;
Ut11, Ut12, Ut21, Ut22: Real;
Period1 : Real from Standard = 0.0;
Period2 : Real from Standard = 0.0)
is static protected;
fields
myDone: Boolean;
myIsPar: Boolean;
mypoints: SequenceOfPOnCurv2d from Extrema;
mySqDist: SequenceOfReal from TColStd;
mynbext: Integer;
inverse: Boolean;
myC: Address from Standard;
myv1: Real;
myv2: Real;
mytolc1: Real;
mytolc2: Real;
P1f: Pnt2d;
P1l: Pnt2d;
P2f: Pnt2d;
P2l: Pnt2d;
mydist11: Real;
mydist12: Real;
mydist21: Real;
mydist22: Real;
end ExtCC2d;