mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
Remaining instantiations of NCollection generics are converted to NCollection templates; unused and duplicates removed
117 lines
3.7 KiB
C++
117 lines
3.7 KiB
C++
// Created on: 1992-06-04
|
|
// Created by: Jacques GOUSSARD
|
|
// Copyright (c) 1992-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.
|
|
|
|
#ifndef _Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_HeaderFile
|
|
#define _Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <Standard_Boolean.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter.hxx>
|
|
class Standard_DomainError;
|
|
class Standard_TypeMismatch;
|
|
class StdFail_NotDone;
|
|
class Adaptor2d_Curve2d;
|
|
class Geom2dInt_Geom2dCurveTool;
|
|
class Extrema_POnCurv2d;
|
|
class gp_Pnt2d;
|
|
class gp_Vec2d;
|
|
|
|
class Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter();
|
|
|
|
//! 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.
|
|
//! TolU is used to decide to stop the iterations.
|
|
//! At the nth iteration, the criteria is:
|
|
//! abs(Un - Un-1) < TolU.
|
|
Standard_EXPORT Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter(const gp_Pnt2d& P, const Adaptor2d_Curve2d& C, const Standard_Real U0, const Standard_Real TolU);
|
|
|
|
//! 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.
|
|
//! TolU is used to decide to stop the iterations.
|
|
//! At the nth iteration, the criteria is:
|
|
//! abs(Un - Un-1) < TolU.
|
|
Standard_EXPORT Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter(const gp_Pnt2d& P, const Adaptor2d_Curve2d& C, const Standard_Real U0, const Standard_Real Umin, const Standard_Real Usup, const Standard_Real TolU);
|
|
|
|
//! sets the fields of the algorithm.
|
|
Standard_EXPORT void Initialize (const Adaptor2d_Curve2d& C, const Standard_Real Umin, const Standard_Real Usup, const Standard_Real TolU);
|
|
|
|
//! the algorithm is done with the point P.
|
|
//! An exception is raised if the fields have not
|
|
//! been initialized.
|
|
Standard_EXPORT void Perform (const gp_Pnt2d& P, const Standard_Real U0);
|
|
|
|
//! Returns True if the distance is found.
|
|
Standard_EXPORT Standard_Boolean IsDone() const;
|
|
|
|
//! Returns the value of the extremum square distance.
|
|
Standard_EXPORT Standard_Real SquareDistance() const;
|
|
|
|
//! Returns True if the extremum distance is a minimum.
|
|
Standard_EXPORT Standard_Boolean IsMin() const;
|
|
|
|
//! Returns the point of the extremum distance.
|
|
Standard_EXPORT const Extrema_POnCurv2d& Point() const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Standard_Boolean myDone;
|
|
Standard_Real mytolU;
|
|
Standard_Real myumin;
|
|
Standard_Real myusup;
|
|
Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter myF;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_HeaderFile
|