// Created on: 1991-03-28 // Created by: Jacques GOUSSARD // Copyright (c) 1991-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _IntWalk_TheInt2S_HeaderFile #define _IntWalk_TheInt2S_HeaderFile #include #include #include #include #include #include #include #include #include #include #include class StdFail_NotDone; class Standard_DomainError; class Standard_ConstructionError; class StdFail_UndefinedDerivative; class Adaptor3d_HSurface; class Adaptor3d_HSurfaceTool; class IntWalk_TheFunctionOfTheInt2S; class math_FunctionSetRoot; class IntSurf_PntOn2S; class gp_Dir; class gp_Dir2d; class IntWalk_TheInt2S { public: DEFINE_STANDARD_ALLOC //! compute the solution point with the close point Standard_EXPORT IntWalk_TheInt2S(const TColStd_Array1OfReal& Param, const Handle(Adaptor3d_HSurface)& S1, const Handle(Adaptor3d_HSurface)& S2, const Standard_Real TolTangency); //! initialize the parameters to compute the solution point //! it 's possible to write to optimize: //! IntImp_Int2S inter(S1,S2,Func,TolTangency); //! math_FunctionSetRoot rsnld(inter.Function()); //! while ...{ //! Param(1)=... //! Param(2)=... //! param(3)=... //! inter.Perform(Param,rsnld); //! } Standard_EXPORT IntWalk_TheInt2S(const Handle(Adaptor3d_HSurface)& S1, const Handle(Adaptor3d_HSurface)& S2, const Standard_Real TolTangency); //! returns the best constant isoparametric to find //! the next intersection's point +stores the solution //! point (the solution point is found with the close point //! to intersect the isoparametric with the other patch; //! the choice of the isoparametic is calculated) Standard_EXPORT IntImp_ConstIsoparametric Perform (const TColStd_Array1OfReal& Param, math_FunctionSetRoot& Rsnld); //! returns the best constant isoparametric to find //! the next intersection's point +stores the solution //! point (the solution point is found with the close point //! to intersect the isoparametric with the other patch; //! the choice of the isoparametic is given by ChoixIso) Standard_EXPORT IntImp_ConstIsoparametric Perform (const TColStd_Array1OfReal& Param, math_FunctionSetRoot& Rsnld, const IntImp_ConstIsoparametric ChoixIso); //! Returns TRUE if the creation completed without failure. Standard_Boolean IsDone() const; //! Returns TRUE when there is no solution to the problem. Standard_Boolean IsEmpty() const; //! Returns the intersection point. const IntSurf_PntOn2S& Point() const; //! Returns True if the surfaces are tangent at the //! intersection point. Standard_Boolean IsTangent() const; //! Returns the tangent at the intersection line. const gp_Dir& Direction() const; //! Returns the tangent at the intersection line in the //! parametric space of the first surface. const gp_Dir2d& DirectionOnS1() const; //! Returns the tangent at the intersection line in the //! parametric space of the second surface. const gp_Dir2d& DirectionOnS2() const; //! return the math function which //! is used to compute the intersection IntWalk_TheFunctionOfTheInt2S& Function(); //! return the intersection point which is //! enable for changing. IntSurf_PntOn2S& ChangePoint(); protected: private: Standard_Boolean done; Standard_Boolean empty; IntSurf_PntOn2S pint; Standard_Boolean tangent; gp_Dir d3d; gp_Dir2d d2d1; gp_Dir2d d2d2; IntWalk_TheFunctionOfTheInt2S myZerParFunc; Standard_Real tol; Standard_Real ua0; Standard_Real va0; Standard_Real ua1; Standard_Real va1; Standard_Real ub0; Standard_Real vb0; Standard_Real ub1; Standard_Real vb1; Standard_Real ures1; Standard_Real ures2; Standard_Real vres1; Standard_Real vres2; }; #define ThePSurface Handle(Adaptor3d_HSurface) #define ThePSurface_hxx #define ThePSurfaceTool Adaptor3d_HSurfaceTool #define ThePSurfaceTool_hxx #define IntImp_TheFunction IntWalk_TheFunctionOfTheInt2S #define IntImp_TheFunction_hxx #define IntImp_Int2S IntWalk_TheInt2S #define IntImp_Int2S_hxx #include #undef ThePSurface #undef ThePSurface_hxx #undef ThePSurfaceTool #undef ThePSurfaceTool_hxx #undef IntImp_TheFunction #undef IntImp_TheFunction_hxx #undef IntImp_Int2S #undef IntImp_Int2S_hxx #endif // _IntWalk_TheInt2S_HeaderFile