|
||||
File indexing completed on 2025-01-18 10:03:02
0001 // Created by: Julia GERASIMOVA 0002 // Copyright (c) 2015 OPEN CASCADE SAS 0003 // 0004 // This file is part of Open CASCADE Technology software library. 0005 // 0006 // This library is free software; you can redistribute it and/or modify it under 0007 // the terms of the GNU Lesser General Public License version 2.1 as published 0008 // by the Free Software Foundation, with special exception defined in the file 0009 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT 0010 // distribution for complete text of the license and disclaimer of any warranty. 0011 // 0012 // Alternatively, this file may be used under the terms of Open CASCADE 0013 // commercial license or contractual agreement. 0014 0015 #ifndef _BlendFunc_ConstThroatWithPenetrationInv_HeaderFile 0016 #define _BlendFunc_ConstThroatWithPenetrationInv_HeaderFile 0017 0018 #include <Adaptor3d_Surface.hxx> 0019 #include <BlendFunc_ConstThroatInv.hxx> 0020 #include <math_Vector.hxx> 0021 0022 class math_Matrix; 0023 0024 //! Class for a function used to compute a ConstThroatWithPenetration chamfer 0025 //! on a surface's boundary 0026 class BlendFunc_ConstThroatWithPenetrationInv : public BlendFunc_ConstThroatInv 0027 { 0028 public: 0029 0030 DEFINE_STANDARD_ALLOC 0031 0032 0033 Standard_EXPORT BlendFunc_ConstThroatWithPenetrationInv(const Handle(Adaptor3d_Surface)& S1, 0034 const Handle(Adaptor3d_Surface)& S2, 0035 const Handle(Adaptor3d_Curve)& C); 0036 0037 Standard_EXPORT Standard_Boolean IsSolution (const math_Vector& Sol, const Standard_Real Tol) Standard_OVERRIDE; 0038 0039 //! computes the values <F> of the Functions for the 0040 //! variable <X>. 0041 //! Returns True if the computation was done successfully, 0042 //! False otherwise. 0043 Standard_EXPORT Standard_Boolean Value (const math_Vector& X, math_Vector& F) Standard_OVERRIDE; 0044 0045 //! returns the values <D> of the derivatives for the 0046 //! variable <X>. 0047 //! Returns True if the computation was done successfully, 0048 //! False otherwise. 0049 Standard_EXPORT Standard_Boolean Derivatives (const math_Vector& X, math_Matrix& D) Standard_OVERRIDE; 0050 0051 0052 0053 protected: 0054 0055 0056 private: 0057 0058 0059 }; 0060 0061 0062 0063 0064 0065 0066 0067 #endif // _BlendFunc_ConstThroatWithPenetrationInv_HeaderFile
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |