Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Created on: 1997-07-28
0002 // Created by: Jerome LEMONIER
0003 // Copyright (c) 1997-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 _BRepBlend_SurfRstEvolRad_HeaderFile
0018 #define _BRepBlend_SurfRstEvolRad_HeaderFile
0019 
0020 #include <Adaptor3d_CurveOnSurface.hxx>
0021 #include <Adaptor3d_Surface.hxx>
0022 #include <gp_Pnt.hxx>
0023 #include <gp_Pnt2d.hxx>
0024 #include <gp_Vec.hxx>
0025 #include <gp_Vec2d.hxx>
0026 #include <BlendFunc_SectionShape.hxx>
0027 #include <Convert_ParameterisationType.hxx>
0028 #include <Blend_SurfRstFunction.hxx>
0029 #include <math_Vector.hxx>
0030 #include <TColStd_Array1OfReal.hxx>
0031 #include <GeomAbs_Shape.hxx>
0032 #include <TColStd_Array1OfInteger.hxx>
0033 #include <TColgp_Array1OfPnt.hxx>
0034 #include <TColgp_Array1OfVec.hxx>
0035 #include <TColgp_Array1OfPnt2d.hxx>
0036 #include <TColgp_Array1OfVec2d.hxx>
0037 
0038 class Law_Function;
0039 class math_Matrix;
0040 class gp_Circ;
0041 class Blend_Point;
0042 
0043 
0044 //! Function  to approximate by AppSurface  for
0045 //! Edge/Face  and  evolutif  radius
0046 class BRepBlend_SurfRstEvolRad  : public Blend_SurfRstFunction
0047 {
0048 public:
0049 
0050   DEFINE_STANDARD_ALLOC
0051 
0052   
0053   Standard_EXPORT BRepBlend_SurfRstEvolRad(const Handle(Adaptor3d_Surface)& Surf, const Handle(Adaptor3d_Surface)& SurfRst, const Handle(Adaptor2d_Curve2d)& Rst, const Handle(Adaptor3d_Curve)& CGuide, const Handle(Law_Function)& Evol);
0054   
0055   //! Returns 3.
0056   Standard_EXPORT Standard_Integer NbVariables() const Standard_OVERRIDE;
0057   
0058   //! Returns 3.
0059   Standard_EXPORT Standard_Integer NbEquations() const Standard_OVERRIDE;
0060   
0061   //! computes the values <F> of the Functions for the
0062   //! variable <X>.
0063   //! Returns True if the computation was done successfully,
0064   //! False otherwise.
0065   Standard_EXPORT Standard_Boolean Value (const math_Vector& X, math_Vector& F) Standard_OVERRIDE;
0066   
0067   //! returns the values <D> of the derivatives for the
0068   //! variable <X>.
0069   //! Returns True if the computation was done successfully,
0070   //! False otherwise.
0071   Standard_EXPORT Standard_Boolean Derivatives (const math_Vector& X, math_Matrix& D) Standard_OVERRIDE;
0072   
0073   //! returns the values <F> of the functions and the derivatives
0074   //! <D> for the variable <X>.
0075   //! Returns True if the computation was done successfully,
0076   //! False otherwise.
0077   Standard_EXPORT Standard_Boolean Values (const math_Vector& X, math_Vector& F, math_Matrix& D) Standard_OVERRIDE;
0078   
0079   Standard_EXPORT void Set (const Handle(Adaptor3d_Surface)& SurfRef, const Handle(Adaptor2d_Curve2d)& RstRef);
0080   
0081   Standard_EXPORT void Set (const Standard_Real Param) Standard_OVERRIDE;
0082   
0083   //! Sets the bounds of the parametric interval on
0084   //! the guide line.
0085   //! This determines the derivatives in these values if the
0086   //! function is not Cn.
0087   Standard_EXPORT void Set (const Standard_Real First, const Standard_Real Last) Standard_OVERRIDE;
0088   
0089   Standard_EXPORT void GetTolerance (math_Vector& Tolerance, const Standard_Real Tol) const Standard_OVERRIDE;
0090   
0091   Standard_EXPORT void GetBounds (math_Vector& InfBound, math_Vector& SupBound) const Standard_OVERRIDE;
0092   
0093   Standard_EXPORT Standard_Boolean IsSolution (const math_Vector& Sol, const Standard_Real Tol) Standard_OVERRIDE;
0094   
0095   //! Returns   the    minimal  Distance  between   two
0096   //! extremities of calculated sections.
0097   Standard_EXPORT virtual Standard_Real GetMinimalDistance() const Standard_OVERRIDE;
0098   
0099   Standard_EXPORT const gp_Pnt& PointOnS() const Standard_OVERRIDE;
0100   
0101   Standard_EXPORT const gp_Pnt& PointOnRst() const Standard_OVERRIDE;
0102   
0103   //! Returns U,V coordinates of the point on the surface.
0104   Standard_EXPORT const gp_Pnt2d& Pnt2dOnS() const Standard_OVERRIDE;
0105   
0106   //! Returns  U,V coordinates of the point  on the curve on
0107   //! surface.
0108   Standard_EXPORT const gp_Pnt2d& Pnt2dOnRst() const Standard_OVERRIDE;
0109   
0110   //! Returns parameter of the point on the curve.
0111   Standard_EXPORT Standard_Real ParameterOnRst() const Standard_OVERRIDE;
0112   
0113   Standard_EXPORT Standard_Boolean IsTangencyPoint() const Standard_OVERRIDE;
0114   
0115   Standard_EXPORT const gp_Vec& TangentOnS() const Standard_OVERRIDE;
0116   
0117   Standard_EXPORT const gp_Vec2d& Tangent2dOnS() const Standard_OVERRIDE;
0118   
0119   Standard_EXPORT const gp_Vec& TangentOnRst() const Standard_OVERRIDE;
0120   
0121   Standard_EXPORT const gp_Vec2d& Tangent2dOnRst() const Standard_OVERRIDE;
0122   
0123   //! Permet  d ' implementer   un   critere  de  decrochage
0124   //! specifique a la fonction.
0125   Standard_EXPORT Standard_Boolean Decroch (const math_Vector& Sol, gp_Vec& NS, gp_Vec& TgS) const Standard_OVERRIDE;
0126   
0127   Standard_EXPORT void Set (const Standard_Integer Choix);
0128   
0129   //! Sets  the  type  of   section generation   for the
0130   //! approximations.
0131   Standard_EXPORT void Set (const BlendFunc_SectionShape TypeSection);
0132   
0133   Standard_EXPORT void Section (const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, Standard_Real& Pdeb, Standard_Real& Pfin, gp_Circ& C);
0134   
0135   //! Returns  if the section is rationnal
0136   Standard_EXPORT Standard_Boolean IsRational() const Standard_OVERRIDE;
0137   
0138   //! Returns the length of the maximum section
0139   Standard_EXPORT Standard_Real GetSectionSize() const Standard_OVERRIDE;
0140   
0141   //! Compute the minimal value of weight for each poles
0142   //! of all sections.
0143   Standard_EXPORT void GetMinimalWeight (TColStd_Array1OfReal& Weigths) const Standard_OVERRIDE;
0144   
0145   //! Returns  the number  of  intervals for  continuity
0146   //! <S>. May be one if Continuity(me) >= <S>
0147   Standard_EXPORT Standard_Integer NbIntervals (const GeomAbs_Shape S) const Standard_OVERRIDE;
0148   
0149   //! Stores in <T> the  parameters bounding the intervals
0150   //! of continuity <S>.
0151   //! The array must provide  enough room to  accommodate
0152   //! for the parameters. i.e. T.Length() > NbIntervals()
0153   Standard_EXPORT void Intervals (TColStd_Array1OfReal& T, const GeomAbs_Shape S) const Standard_OVERRIDE;
0154   
0155   Standard_EXPORT void GetShape (Standard_Integer& NbPoles, Standard_Integer& NbKnots, Standard_Integer& Degree, Standard_Integer& NbPoles2d) Standard_OVERRIDE;
0156   
0157   //! Returns the tolerance to reach in approximation
0158   //! to respecte
0159   //! BoundTol error at the Boundary
0160   //! AngleTol tangent error at the Boundary
0161   //! SurfTol error inside the surface.
0162   Standard_EXPORT void GetTolerance (const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector& Tol3d, math_Vector& Tol1D) const Standard_OVERRIDE;
0163   
0164   Standard_EXPORT void Knots (TColStd_Array1OfReal& TKnots) Standard_OVERRIDE;
0165   
0166   Standard_EXPORT void Mults (TColStd_Array1OfInteger& TMults) Standard_OVERRIDE;
0167   
0168   //! Used for the first and last section
0169   Standard_EXPORT Standard_Boolean Section (const Blend_Point& P, TColgp_Array1OfPnt& Poles, TColgp_Array1OfVec& DPoles, TColgp_Array1OfPnt2d& Poles2d, TColgp_Array1OfVec2d& DPoles2d, TColStd_Array1OfReal& Weigths, TColStd_Array1OfReal& DWeigths) Standard_OVERRIDE;
0170   
0171   //! Used for the first and last section
0172   //! The method returns Standard_True if the derivatives
0173   //! are computed, otherwise it returns Standard_False.
0174   Standard_EXPORT Standard_Boolean Section (const Blend_Point& P, TColgp_Array1OfPnt& Poles, TColgp_Array1OfVec& DPoles, TColgp_Array1OfVec& D2Poles, TColgp_Array1OfPnt2d& Poles2d, TColgp_Array1OfVec2d& DPoles2d, TColgp_Array1OfVec2d& D2Poles2d, TColStd_Array1OfReal& Weigths, TColStd_Array1OfReal& DWeigths, TColStd_Array1OfReal& D2Weigths) Standard_OVERRIDE;
0175   
0176   Standard_EXPORT void Section (const Blend_Point& P, TColgp_Array1OfPnt& Poles, TColgp_Array1OfPnt2d& Poles2d, TColStd_Array1OfReal& Weigths) Standard_OVERRIDE;
0177   
0178   Standard_EXPORT void Resolution (const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real& TolU, Standard_Real& TolV) const Standard_OVERRIDE;
0179 
0180 
0181 
0182 
0183 protected:
0184 
0185 
0186 
0187 
0188 
0189 private:
0190 
0191 
0192 
0193   Handle(Adaptor3d_Surface) surf;
0194   Handle(Adaptor3d_Surface) surfrst;
0195   Handle(Adaptor2d_Curve2d) rst;
0196   Adaptor3d_CurveOnSurface cons;
0197   Handle(Adaptor3d_Curve) guide;
0198   Handle(Adaptor3d_Curve) tguide;
0199   gp_Pnt pts;
0200   gp_Pnt ptrst;
0201   gp_Pnt2d pt2ds;
0202   gp_Pnt2d pt2drst;
0203   Standard_Real prmrst;
0204   Standard_Boolean istangent;
0205   gp_Vec tgs;
0206   gp_Vec2d tg2ds;
0207   gp_Vec tgrst;
0208   gp_Vec2d tg2drst;
0209   Standard_Real ray;
0210   Standard_Real dray;
0211   Standard_Integer choix;
0212   gp_Pnt ptgui;
0213   gp_Vec d1gui;
0214   gp_Vec d2gui;
0215   gp_Vec nplan;
0216   Standard_Real normtg;
0217   Standard_Real theD;
0218   Handle(Adaptor3d_Surface) surfref;
0219   Handle(Adaptor2d_Curve2d) rstref;
0220   Standard_Real maxang;
0221   Standard_Real minang;
0222   Standard_Real distmin;
0223   BlendFunc_SectionShape mySShape;
0224   Convert_ParameterisationType myTConv;
0225   Handle(Law_Function) tevol;
0226   Handle(Law_Function) fevol;
0227   Standard_Real sg1;
0228 
0229 
0230 };
0231 
0232 
0233 
0234 
0235 
0236 
0237 
0238 #endif // _BRepBlend_SurfRstEvolRad_HeaderFile