Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Created on: 1996-01-25
0002 // Created by: Laurent PAINNOT
0003 // Copyright (c) 1996-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_GenLocateExtCS_HeaderFile
0018 #define _Extrema_GenLocateExtCS_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 
0023 #include <Extrema_POnCurv.hxx>
0024 #include <Extrema_POnSurf.hxx>
0025 class Adaptor3d_Curve;
0026 class Adaptor3d_Surface;
0027 
0028 
0029 //! With two close points it calculates the distance
0030 //! between two surfaces.
0031 //! This distance can be a minimum or a maximum.
0032 class Extrema_GenLocateExtCS 
0033 {
0034 public:
0035 
0036   DEFINE_STANDARD_ALLOC
0037 
0038   
0039   Standard_EXPORT Extrema_GenLocateExtCS();
0040   
0041   //! Calculates the distance with two close points.
0042   //! The close points are defined by the parameter values
0043   //! T for C and (U,V) for S.
0044   //! The function F(t,u,v)=distance(C(t),S(u,v))
0045   //! has an extremun when gradient(F)=0. The algorithm searches
0046   //! a zero near the close points.
0047   Standard_EXPORT Extrema_GenLocateExtCS(const Adaptor3d_Curve& C, const Adaptor3d_Surface& S, const Standard_Real T, const Standard_Real U, const Standard_Real V, const Standard_Real Tol1, const Standard_Real Tol2);
0048   
0049   Standard_EXPORT void Perform (const Adaptor3d_Curve& C, const Adaptor3d_Surface& S, const Standard_Real T, const Standard_Real U, const Standard_Real V, const Standard_Real Tol1, const Standard_Real Tol2);
0050   
0051   //! Returns True if the distance is found.
0052   Standard_EXPORT Standard_Boolean IsDone() const;
0053   
0054   //! Returns the value of the extremum square distance.
0055   Standard_EXPORT Standard_Real SquareDistance() const;
0056   
0057   //! Returns the point of the extremum distance on C.
0058   Standard_EXPORT const Extrema_POnCurv& PointOnCurve() const;
0059   
0060   //! Returns the point of the extremum distance on S.
0061   Standard_EXPORT const Extrema_POnSurf& PointOnSurface() const;
0062 
0063 
0064 
0065 
0066 protected:
0067 
0068 
0069 
0070 
0071 
0072 private:
0073 
0074 
0075 
0076   Standard_Boolean myDone;
0077   Standard_Real mySqDist;
0078   Extrema_POnCurv myPoint1;
0079   Extrema_POnSurf myPoint2;
0080 
0081 
0082 };
0083 
0084 
0085 
0086 
0087 
0088 
0089 
0090 #endif // _Extrema_GenLocateExtCS_HeaderFile