mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-17 05:37:45 +08:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
139 lines
4.4 KiB
Plaintext
139 lines
4.4 KiB
Plaintext
-- Created on: 1993-12-14
|
|
-- Created by: Christophe MARION
|
|
-- Copyright (c) 1993-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.
|
|
|
|
generic class GLocateExtPC from Extrema(
|
|
TheCurve as any;
|
|
TheCurveTool as any;
|
|
TheExtPElC as any;
|
|
ThePoint as any;
|
|
TheVector as any;
|
|
ThePOnC as any;
|
|
TheSequenceOfPOnC as any)
|
|
|
|
---Purpose: It calculates the distance between a point and a
|
|
-- curve with a close point.
|
|
-- This distance can be a minimum or a maximum.
|
|
|
|
uses CurveType from GeomAbs
|
|
|
|
|
|
raises DomainError from Standard,
|
|
NotDone from StdFail
|
|
|
|
class ELPC instantiates GExtPC from Extrema
|
|
(TheCurve,
|
|
TheCurveTool,
|
|
TheExtPElC,
|
|
ThePoint,
|
|
TheVector,
|
|
ThePOnC,
|
|
TheSequenceOfPOnC);
|
|
|
|
|
|
class LocEPC instantiates GenLocateExtPC from Extrema
|
|
(TheCurve,
|
|
TheCurveTool,
|
|
ThePOnC,
|
|
ThePoint,
|
|
TheVector);
|
|
|
|
|
|
is
|
|
|
|
Create returns GLocateExtPC;
|
|
|
|
Create (P: ThePoint; C: TheCurve; U0: Real; TolF: Real)
|
|
returns GLocateExtPC
|
|
---Purpose: Calculates the distance with a close point.
|
|
-- The close point is defined by the parameter value
|
|
-- U0.
|
|
-- The function F(u)=distance(P,C(u)) has an extremum
|
|
-- when g(u)=dF/du=0. The algorithm searchs a zero
|
|
-- near the close point.
|
|
-- TolF is used to decide to stop the iterations.
|
|
-- At the nth iteration, the criteria is:
|
|
-- abs(Un - Un-1) < TolF.
|
|
raises DomainError;
|
|
-- if U0 is outside the definition range of the curve.
|
|
|
|
|
|
Create (P: ThePoint; C: TheCurve; U0: Real; Umin, Usup: Real; TolF: Real)
|
|
returns GLocateExtPC
|
|
---Purpose: Calculates the distance with a close point.
|
|
-- The close point is defined by the parameter value
|
|
-- U0.
|
|
-- The function F(u)=distance(P,C(u)) has an extremum
|
|
-- when g(u)=dF/du=0. The algorithm searchs a zero
|
|
-- near the close point.
|
|
-- Zeros are searched between Umin et Usup.
|
|
-- TolF is used to decide to stop the iterations.
|
|
-- At the nth iteration, the criteria is:
|
|
-- abs(Un - Un-1) < TolF.
|
|
raises DomainError;
|
|
-- if U0 is outside the definition range of the curve.
|
|
|
|
Initialize(me: in out; C: TheCurve; Umin, Usup: Real; TolF: Real)
|
|
---Purpose: sets the fields of the algorithm.
|
|
is static;
|
|
|
|
|
|
Perform(me: in out; P: ThePoint; U0: Real)
|
|
---Purpose:
|
|
|
|
is static;
|
|
|
|
|
|
IsDone (me) returns Boolean
|
|
---Purpose: Returns True if the distance is found.
|
|
is static;
|
|
|
|
SquareDistance (me) returns Real
|
|
---Purpose: Returns the value of the extremum square distance.
|
|
raises NotDone from StdFail
|
|
-- if IsDone(me)=False.
|
|
is static;
|
|
|
|
IsMin (me) returns Boolean
|
|
---Purpose: Returns True if the extremum distance is a minimum.
|
|
raises NotDone from StdFail
|
|
-- if IsDone(me)=False.
|
|
is static;
|
|
|
|
Point (me) returns ThePOnC
|
|
---C++: return const &
|
|
---Purpose: Returns the point of the extremum distance.
|
|
raises NotDone from StdFail
|
|
-- if IsDone(me)=False.
|
|
is static;
|
|
|
|
|
|
|
|
fields
|
|
mypp: ThePOnC;
|
|
myC: Address from Standard;
|
|
mydist2: Real from Standard;
|
|
myismin: Boolean from Standard;
|
|
myDone : Boolean from Standard;
|
|
myumin: Real from Standard;
|
|
myusup: Real from Standard;
|
|
mytol: Real from Standard;
|
|
myLocExtPC: LocEPC from Extrema;
|
|
myExtremPC: ELPC from Extrema;
|
|
type: CurveType from GeomAbs;
|
|
numberext: Integer from Standard;
|
|
|
|
end GLocateExtPC;
|