Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:03:28

0001 // Created on: 1994-01-04
0002 // Created by: Christophe MARION
0003 // Copyright (c) 1994-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #ifndef _Extrema_ExtElC2d_HeaderFile
0018 #define _Extrema_ExtElC2d_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 
0023 #include <Standard_Integer.hxx>
0024 #include <Extrema_POnCurv2d.hxx>
0025 
0026 class gp_Lin2d;
0027 class gp_Circ2d;
0028 class gp_Elips2d;
0029 class gp_Hypr2d;
0030 class gp_Parab2d;
0031 
0032 
0033 //! It calculates all the distance between two elementary
0034 //! curves.
0035 //! These distances can be maximum or minimum.
0036 class Extrema_ExtElC2d 
0037 {
0038 public:
0039 
0040   DEFINE_STANDARD_ALLOC
0041 
0042   
0043   Standard_EXPORT Extrema_ExtElC2d();
0044   
0045   //! Calculates the distance between two lines.
0046   //! AngTol is used to test if the lines are parallel:
0047   //! Angle(C1,C2) < AngTol.
0048   Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Lin2d& C2, const Standard_Real AngTol);
0049   
0050   //! Calculates the distance between a line and a
0051   //! circle.
0052   Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Circ2d& C2, const Standard_Real Tol);
0053   
0054   //! Calculates the distance between a line and an
0055   //! ellipse.
0056   Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Elips2d& C2);
0057   
0058   //! Calculates the distance between a line and a
0059   //! hyperbola.
0060   Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Hypr2d& C2);
0061   
0062   //! Calculates the distance between a line and a
0063   //! parabola.
0064   Standard_EXPORT Extrema_ExtElC2d(const gp_Lin2d& C1, const gp_Parab2d& C2);
0065   
0066   //! Calculates the distance between two circles.
0067   //! The circles can be parallel or identical.
0068   Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Circ2d& C2);
0069   
0070   //! Calculates the distance between a circle and an
0071   //! ellipse.
0072   Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Elips2d& C2);
0073   
0074   //! Calculates the distance between a circle and a
0075   //! hyperbola.
0076   Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Hypr2d& C2);
0077   
0078   //! Calculates the distance between a circle and a
0079   //! parabola.
0080   Standard_EXPORT Extrema_ExtElC2d(const gp_Circ2d& C1, const gp_Parab2d& C2);
0081   
0082   //! Returns True if the distances are found.
0083   Standard_EXPORT Standard_Boolean IsDone() const;
0084   
0085   //! Returns True if the two curves are parallel.
0086   Standard_EXPORT Standard_Boolean IsParallel() const;
0087   
0088   //! Returns the number of extremum distances.
0089   Standard_EXPORT Standard_Integer NbExt() const;
0090   
0091   //! Returns the value of the Nth extremum square distance.
0092   Standard_EXPORT Standard_Real SquareDistance (const Standard_Integer N = 1) const;
0093   
0094   //! Returns the points of the Nth extremum distance.
0095   //! P1 is on the first curve, P2 on the second one.
0096   Standard_EXPORT void Points (const Standard_Integer N, Extrema_POnCurv2d& P1, Extrema_POnCurv2d& P2) const;
0097 
0098 
0099 
0100 
0101 protected:
0102 
0103 
0104 
0105 
0106 
0107 private:
0108 
0109 
0110 
0111   Standard_Boolean myDone;
0112   Standard_Boolean myIsPar;
0113   Standard_Integer myNbExt;
0114   Standard_Real mySqDist[8];
0115   Extrema_POnCurv2d myPoint[8][2];
0116 
0117 
0118 };
0119 
0120 
0121 
0122 
0123 
0124 
0125 
0126 #endif // _Extrema_ExtElC2d_HeaderFile