|
|
|||
File indexing completed on 2026-09-15 09:15:04
0001 // Created on: 1997-10-31 0002 // Created by: Joelle CHAUVET 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 _BRepFill_CurveConstraint_HeaderFile 0018 #define _BRepFill_CurveConstraint_HeaderFile 0019 0020 #include <Standard.hxx> 0021 #include <Standard_Type.hxx> 0022 0023 #include <GeomPlate_CurveConstraint.hxx> 0024 #include <Standard_Integer.hxx> 0025 0026 //! same as CurveConstraint from GeomPlate 0027 //! with BRepAdaptor_Surface instead of 0028 //! GeomAdaptor_Surface 0029 class BRepFill_CurveConstraint : public GeomPlate_CurveConstraint 0030 { 0031 0032 public: 0033 //! Create a constraint 0034 //! Order is the order of the constraint. The possible values for order are -1,0,1,2. 0035 //! Order i means constraints Gi 0036 //! Npt is the number of points associated with the constraint. 0037 //! TolDist is the maximum error to satisfy for G0 constraints 0038 //! TolAng is the maximum error to satisfy for G1 constraints 0039 //! TolCurv is the maximum error to satisfy for G2 constraints 0040 //! These errors can be replaced by laws of criterion. 0041 Standard_EXPORT BRepFill_CurveConstraint(const occ::handle<Adaptor3d_CurveOnSurface>& Boundary, 0042 const int Order, 0043 const int NPt = 10, 0044 const double TolDist = 0.0001, 0045 const double TolAng = 0.01, 0046 const double TolCurv = 0.1); 0047 0048 Standard_EXPORT BRepFill_CurveConstraint(const occ::handle<Adaptor3d_Curve>& Boundary, 0049 const int Tang, 0050 const int NPt = 10, 0051 const double TolDist = 0.0001); 0052 0053 DEFINE_STANDARD_RTTIEXT(BRepFill_CurveConstraint, GeomPlate_CurveConstraint) 0054 }; 0055 0056 #endif // _BRepFill_CurveConstraint_HeaderFile
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|