0032603: Coding - get rid of unsused forward declarations
[occt.git] / src / BRepFill / BRepFill_ShapeLaw.hxx
1 // Created on: 1998-08-17
2 // Created by: Philippe MANGIN
3 // Copyright (c) 1998-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_ShapeLaw_HeaderFile
18 #define _BRepFill_ShapeLaw_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <TopoDS_Shape.hxx>
24 #include <TopTools_HArray1OfShape.hxx>
25 #include <Standard_Boolean.hxx>
26 #include <BRepFill_SectionLaw.hxx>
27 #include <GeomAbs_Shape.hxx>
28 #include <Standard_Integer.hxx>
29 #include <Standard_Real.hxx>
30 class Law_Function;
31 class TopoDS_Vertex;
32 class TopoDS_Wire;
33 class GeomFill_SectionLaw;
34 class TopoDS_Edge;
35
36
37 class BRepFill_ShapeLaw;
38 DEFINE_STANDARD_HANDLE(BRepFill_ShapeLaw, BRepFill_SectionLaw)
39
40 //! Build Section Law, with an Vertex, or an Wire
41 class BRepFill_ShapeLaw : public BRepFill_SectionLaw
42 {
43
44 public:
45
46   
47   //! Construct an constant Law
48   Standard_EXPORT BRepFill_ShapeLaw(const TopoDS_Vertex& V, const Standard_Boolean Build = Standard_True);
49   
50   //! Construct an constant Law
51   Standard_EXPORT BRepFill_ShapeLaw(const TopoDS_Wire& W, const Standard_Boolean Build = Standard_True);
52   
53   //! Construct an evolutive Law
54   Standard_EXPORT BRepFill_ShapeLaw(const TopoDS_Wire& W, const Handle(Law_Function)& L, const Standard_Boolean Build = Standard_True);
55   
56   //! Say if the input shape is a  vertex.
57   Standard_EXPORT virtual Standard_Boolean IsVertex() const Standard_OVERRIDE;
58   
59   //! Say if the Law is  Constant.
60   Standard_EXPORT virtual Standard_Boolean IsConstant() const Standard_OVERRIDE;
61   
62   //! Give the law build on a concatenated section
63   Standard_EXPORT virtual Handle(GeomFill_SectionLaw) ConcatenedLaw() const Standard_OVERRIDE;
64   
65   Standard_EXPORT virtual GeomAbs_Shape Continuity (const Standard_Integer Index, const Standard_Real TolAngular) const Standard_OVERRIDE;
66   
67   Standard_EXPORT virtual Standard_Real VertexTol (const Standard_Integer Index, const Standard_Real Param) const Standard_OVERRIDE;
68   
69   Standard_EXPORT virtual TopoDS_Vertex Vertex (const Standard_Integer Index, const Standard_Real Param) const Standard_OVERRIDE;
70   
71   Standard_EXPORT virtual void D0 (const Standard_Real Param, TopoDS_Shape& S) Standard_OVERRIDE;
72   
73     const TopoDS_Edge& Edge (const Standard_Integer Index) const;
74
75
76
77
78   DEFINE_STANDARD_RTTIEXT(BRepFill_ShapeLaw,BRepFill_SectionLaw)
79
80 protected:
81
82
83   Standard_Boolean vertex;
84
85
86 private:
87
88   
89   Standard_EXPORT void Init (const Standard_Boolean B);
90
91   TopoDS_Shape myShape;
92   Handle(TopTools_HArray1OfShape) myEdges;
93   Handle(Law_Function) TheLaw;
94
95
96 };
97
98
99 #include <BRepFill_ShapeLaw.lxx>
100
101
102
103
104
105 #endif // _BRepFill_ShapeLaw_HeaderFile