0026937: Eliminate NO_CXX_EXCEPTION macro support
[occt.git] / src / Extrema / Extrema_ExtElC.hxx
CommitLineData
42cf5bc1 1// Created on: 1991-02-21
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_ExtElC_HeaderFile
18#define _Extrema_ExtElC_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_Integer.hxx>
26#include <Standard_Real.hxx>
27#include <Extrema_POnCurv.hxx>
28class StdFail_InfiniteSolutions;
29class StdFail_NotDone;
30class Standard_OutOfRange;
31class gp_Lin;
32class gp_Circ;
33class gp_Elips;
34class gp_Hypr;
35class gp_Parab;
36class Extrema_POnCurv;
37
38
39//! It calculates all the distance between two elementary
40//! curves.
41//! These distances can be maximum or minimum.
42class Extrema_ExtElC
43{
44public:
45
46 DEFINE_STANDARD_ALLOC
47
48
49 Standard_EXPORT Extrema_ExtElC();
50
51 //! Calculates the distance between two lines.
52 //! AngTol is used to test if the lines are parallel:
53 //! Angle(C1,C2) < AngTol.
54 Standard_EXPORT Extrema_ExtElC(const gp_Lin& C1, const gp_Lin& C2, const Standard_Real AngTol);
55
56 //! Calculates the distance between a line and a
57 //! circle.
58 Standard_EXPORT Extrema_ExtElC(const gp_Lin& C1, const gp_Circ& C2, const Standard_Real Tol);
59
60 //! Calculates the distance between a line and an
61 //! elipse.
62 Standard_EXPORT Extrema_ExtElC(const gp_Lin& C1, const gp_Elips& C2);
63
64 //! Calculates the distance between a line and a
65 //! hyperbola.
66 Standard_EXPORT Extrema_ExtElC(const gp_Lin& C1, const gp_Hypr& C2);
67
68 //! Calculates the distance between a line and a
69 //! parabola.
70 Standard_EXPORT Extrema_ExtElC(const gp_Lin& C1, const gp_Parab& C2);
71
72 //! Calculates the distance between two circles.
73 //! The circles can be parallel or identical.
74 Standard_EXPORT Extrema_ExtElC(const gp_Circ& C1, const gp_Circ& C2);
75
42cf5bc1 76 //! Returns True if the distances are found.
77 Standard_EXPORT Standard_Boolean IsDone() const;
78
79 //! Returns True if the two curves are parallel.
80 Standard_EXPORT Standard_Boolean IsParallel() const;
81
82 //! Returns the number of extremum distances.
83 Standard_EXPORT Standard_Integer NbExt() const;
84
85 //! Returns the value of the Nth extremum square distance.
86 Standard_EXPORT Standard_Real SquareDistance (const Standard_Integer N = 1) const;
87
88 //! Returns the points of the Nth extremum distance.
89 //! P1 is on the first curve, P2 on the second one.
90 Standard_EXPORT void Points (const Standard_Integer N, Extrema_POnCurv& P1, Extrema_POnCurv& P2) const;
91
92
93
94
95protected:
96
8cc8a692 97 //! Computes extrema in case when considered line and circle are in one plane
98 Standard_EXPORT Standard_Boolean PlanarLineCircleExtrema(const gp_Lin& C1,
99 const gp_Circ& C2);
42cf5bc1 100
101
102
103
104private:
105
106
107
108 Standard_Boolean myDone;
109 Standard_Boolean myIsPar;
110 Standard_Integer myNbExt;
111 Standard_Real mySqDist[6];
112 Extrema_POnCurv myPoint[6][2];
113
114
115};
116
117
118
119
120
121
122
123#endif // _Extrema_ExtElC_HeaderFile