Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Created on: 1995-10-17
0002 // Created by: Laurent BOURESCHE
0003 // Copyright (c) 1995-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 _GeomFill_Boundary_HeaderFile
0018 #define _GeomFill_Boundary_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022 
0023 #include <Standard_Real.hxx>
0024 #include <Standard_Transient.hxx>
0025 class gp_Pnt;
0026 class gp_Vec;
0027 
0028 
0029 class GeomFill_Boundary;
0030 DEFINE_STANDARD_HANDLE(GeomFill_Boundary, Standard_Transient)
0031 
0032 //! Root class to define a boundary  which will form part of a
0033 //! contour around a gap requiring filling.
0034 //! Any  new type  of  constrained boundary must inherit this class.
0035 //! The GeomFill package provides two classes to define constrained boundaries:
0036 //! -   GeomFill_SimpleBound to define an unattached boundary
0037 //! -   GeomFill_BoundWithSurf to define a boundary attached to a surface.
0038 //! These objects are used to define the boundaries for a
0039 //! GeomFill_ConstrainedFilling framework.
0040 class GeomFill_Boundary : public Standard_Transient
0041 {
0042 
0043 public:
0044 
0045   
0046   Standard_EXPORT virtual gp_Pnt Value (const Standard_Real U) const = 0;
0047   
0048   Standard_EXPORT virtual void D1 (const Standard_Real U, gp_Pnt& P, gp_Vec& V) const = 0;
0049   
0050   Standard_EXPORT virtual Standard_Boolean HasNormals() const;
0051   
0052   Standard_EXPORT virtual gp_Vec Norm (const Standard_Real U) const;
0053   
0054   Standard_EXPORT virtual void D1Norm (const Standard_Real U, gp_Vec& N, gp_Vec& DN) const;
0055   
0056   Standard_EXPORT virtual void Reparametrize (const Standard_Real First, const Standard_Real Last, const Standard_Boolean HasDF, const Standard_Boolean HasDL, const Standard_Real DF, const Standard_Real DL, const Standard_Boolean Rev) = 0;
0057   
0058   Standard_EXPORT void Points (gp_Pnt& PFirst, gp_Pnt& PLast) const;
0059   
0060   Standard_EXPORT virtual void Bounds (Standard_Real& First, Standard_Real& Last) const = 0;
0061   
0062   Standard_EXPORT virtual Standard_Boolean IsDegenerated() const = 0;
0063   
0064   Standard_EXPORT Standard_Real Tol3d() const;
0065   
0066   Standard_EXPORT void Tol3d (const Standard_Real Tol);
0067   
0068   Standard_EXPORT Standard_Real Tolang() const;
0069   
0070   Standard_EXPORT void Tolang (const Standard_Real Tol);
0071 
0072 
0073 
0074 
0075   DEFINE_STANDARD_RTTIEXT(GeomFill_Boundary,Standard_Transient)
0076 
0077 protected:
0078 
0079   
0080   Standard_EXPORT GeomFill_Boundary(const Standard_Real Tol3d, const Standard_Real Tolang);
0081 
0082 
0083 
0084 private:
0085 
0086 
0087   Standard_Real myT3d;
0088   Standard_Real myTang;
0089 
0090 
0091 };
0092 
0093 
0094 
0095 
0096 
0097 
0098 
0099 #endif // _GeomFill_Boundary_HeaderFile