0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / Extrema / Extrema_ExtElC2d.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-01-04
2// Created by: Christophe MARION
3// Copyright (c) 1994-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_ExtElC2d_HeaderFile
18#define _Extrema_ExtElC2d_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_POnCurv2d.hxx>
ce64c9ad 28
42cf5bc1 29class gp_Lin2d;
30class gp_Circ2d;
31class gp_Elips2d;
32class gp_Hypr2d;
33class gp_Parab2d;
34class Extrema_POnCurv2d;
35
36
37//! It calculates all the distance between two elementary
38//! curves.
39//! These distances can be maximum or minimum.
40class Extrema_ExtElC2d
41{
42public:
43
44 DEFINE_STANDARD_ALLOC
45
46
47 Standard_EXPORT Extrema_ExtElC2d();
48
49 //! Calculates the distance between two lines.
50 //! AngTol is used to test if the lines are parallel:
51 //! Angle(C1,C2) < AngTol.
52 Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Lin2d& C2, const Standard_Real AngTol);
53
54 //! Calculates the distance between a line and a
55 //! circle.
56 Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Circ2d& C2, const Standard_Real Tol);
57
58 //! Calculates the distance between a line and an
59 //! elipse.
60 Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Elips2d& C2);
61
62 //! Calculates the distance between a line and a
63 //! hyperbola.
64 Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Hypr2d& C2);
65
66 //! Calculates the distance between a line and a
67 //! parabola.
68 Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Parab2d& C2);
69
70 //! Calculates the distance between two circles.
71 //! The circles can be parallel or identical.
72 Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Circ2d& C2);
73
74 //! Calculates the distance between a circle and an
75 //! elipse.
76 Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Elips2d& C2);
77
78 //! Calculates the distance between a circle and a
79 //! hyperbola.
80 Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Hypr2d& C2);
81
82 //! Calculates the distance between a circle and a
83 //! parabola.
84 Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Parab2d& C2);
85
42cf5bc1 86 //! Returns True if the distances are found.
87 Standard_EXPORT Standard_Boolean IsDone() const;
88
89 //! Returns True if the two curves are parallel.
90 Standard_EXPORT Standard_Boolean IsParallel() const;
91
92 //! Returns the number of extremum distances.
93 Standard_EXPORT Standard_Integer NbExt() const;
94
95 //! Returns the value of the Nth extremum square distance.
96 Standard_EXPORT Standard_Real SquareDistance (const Standard_Integer N = 1) const;
97
98 //! Returns the points of the Nth extremum distance.
99 //! P1 is on the first curve, P2 on the second one.
100 Standard_EXPORT void Points (const Standard_Integer N, Extrema_POnCurv2d& P1, Extrema_POnCurv2d& P2) const;
101
102
103
104
105protected:
106
107
108
109
110
111private:
112
113
114
115 Standard_Boolean myDone;
116 Standard_Boolean myIsPar;
117 Standard_Integer myNbExt;
118 Standard_Real mySqDist[8];
119 Extrema_POnCurv2d myPoint[8][2];
120
121
122};
123
124
125
126
127
128
129
130#endif // _Extrema_ExtElC2d_HeaderFile