0032603: Coding - get rid of unsused forward declarations
[occt.git] / src / BRepFill / BRepFill_CurveConstraint.hxx
1 // Created on: 1997-10-31
2 // Created by: Joelle CHAUVET
3 // Copyright (c) 1997-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _BRepFill_CurveConstraint_HeaderFile
18 #define _BRepFill_CurveConstraint_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <GeomPlate_CurveConstraint.hxx>
24 #include <Standard_Integer.hxx>
25 #include <Standard_Real.hxx>
26
27 class BRepFill_CurveConstraint;
28 DEFINE_STANDARD_HANDLE(BRepFill_CurveConstraint, GeomPlate_CurveConstraint)
29
30 //! same as CurveConstraint from GeomPlate
31 //! with BRepAdaptor_Surface instead of
32 //! GeomAdaptor_Surface
33 class BRepFill_CurveConstraint : public GeomPlate_CurveConstraint
34 {
35
36 public:
37
38   
39   //! Create a constraint
40   //! Order is the order of the constraint. The possible values for order are -1,0,1,2.
41   //! Order i means constraints Gi
42   //! Npt is the number of points associated with the constraint.
43   //! TolDist is the maximum error to satisfy for G0 constraints
44   //! TolAng is the maximum error to satisfy for G1 constraints
45   //! TolCurv is the maximum error to satisfy for G2 constraints
46   //! These errors can be replaced by laws of criterion.
47   Standard_EXPORT BRepFill_CurveConstraint(const Handle(Adaptor3d_CurveOnSurface)& Boundary, const Standard_Integer Order, const Standard_Integer NPt = 10, const Standard_Real TolDist = 0.0001, const Standard_Real TolAng = 0.01, const Standard_Real TolCurv = 0.1);
48   
49   Standard_EXPORT BRepFill_CurveConstraint(const Handle(Adaptor3d_Curve)& Boundary, const Standard_Integer Tang, const Standard_Integer NPt = 10, const Standard_Real TolDist = 0.0001);
50
51
52
53
54   DEFINE_STANDARD_RTTIEXT(BRepFill_CurveConstraint,GeomPlate_CurveConstraint)
55
56 protected:
57
58
59
60
61 private:
62
63
64
65
66 };
67
68
69
70
71
72
73
74 #endif // _BRepFill_CurveConstraint_HeaderFile