0030675: Visualization - remove redundant proxy classes in hierarchy of PrsMgr_Presen...
[occt.git] / src / Extrema / Extrema_LocECC2d.hxx
CommitLineData
42cf5bc1 1// Created on: 1991-02-26
2// Created by: Isabelle GRIGNON
3// Copyright (c) 1991-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
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
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.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _Extrema_LocECC2d_HeaderFile
18#define _Extrema_LocECC2d_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <Standard_Boolean.hxx>
25#include <Standard_Real.hxx>
26#include <Extrema_POnCurv2d.hxx>
5d88fd54 27#include <Extrema_SequenceOfPOnCurv2d.hxx>
28
42cf5bc1 29class Standard_DomainError;
30class StdFail_NotDone;
31class Adaptor2d_Curve2d;
32class Extrema_Curve2dTool;
33class Extrema_POnCurv2d;
34class gp_Pnt2d;
35class gp_Vec2d;
36class Extrema_CCLocFOfLocECC2d;
42cf5bc1 37
38class Extrema_LocECC2d
39{
40public:
41
42 DEFINE_STANDARD_ALLOC
43
44
36b9ff75 45 //! Calculates the distance with a close point. The
46 //! close point is defined by a parameter value on each
47 //! curve.
48 //! The function F(u,v)=distance(C1(u),C2(v)) has an
49 //! extremun when gradient(f)=0. The algorithm searchs
50 //! the zero near the close point.
42cf5bc1 51 Standard_EXPORT Extrema_LocECC2d(const Adaptor2d_Curve2d& C1, const Adaptor2d_Curve2d& C2, const Standard_Real U0, const Standard_Real V0, const Standard_Real TolU, const Standard_Real TolV);
52
36b9ff75 53 //! Returns True if the distance is found.
42cf5bc1 54 Standard_EXPORT Standard_Boolean IsDone() const;
55
36b9ff75 56 //! Returns the value of the extremum square distance.
42cf5bc1 57 Standard_EXPORT Standard_Real SquareDistance() const;
58
36b9ff75 59 //! Returns the points of the extremum distance.
60 //! P1 is on the first curve, P2 on the second one.
42cf5bc1 61 Standard_EXPORT void Point (Extrema_POnCurv2d& P1, Extrema_POnCurv2d& P2) const;
62
63
64
65
66protected:
67
68
69
70
71
72private:
73
74
75
76 Standard_Boolean myDone;
77 Standard_Real mySqDist;
78 Extrema_POnCurv2d myPoint1;
79 Extrema_POnCurv2d myPoint2;
80
81
82};
83
84
85
86
87
88
89
90#endif // _Extrema_LocECC2d_HeaderFile