0031303: Different calculation of offset direction in Adaptor2d_OffsetCurve and Geom2...
[occt.git] / src / BRepFill / BRepFill_SectionLaw.hxx
1 // Created on: 1998-01-07
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_SectionLaw_HeaderFile
18 #define _BRepFill_SectionLaw_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <GeomFill_HArray1OfSectionLaw.hxx>
24 #include <TopTools_DataMapOfShapeInteger.hxx>
25 #include <Standard_Boolean.hxx>
26 #include <BRepTools_WireExplorer.hxx>
27 #include <Standard_Transient.hxx>
28 #include <Standard_Integer.hxx>
29 #include <GeomAbs_Shape.hxx>
30 #include <Standard_Real.hxx>
31 class GeomFill_SectionLaw;
32 class TopoDS_Vertex;
33 class TopoDS_Shape;
34 class TopoDS_Wire;
35 class TopoDS_Edge;
36
37 class BRepFill_SectionLaw;
38 DEFINE_STANDARD_HANDLE(BRepFill_SectionLaw, Standard_Transient)
39
40 //! Build Section Law, with an Vertex, or an Wire
41 class BRepFill_SectionLaw : public Standard_Transient
42 {
43
44 public:
45
46   
47   Standard_EXPORT Standard_Integer NbLaw() const;
48   
49   Standard_EXPORT const Handle(GeomFill_SectionLaw)& Law (const Standard_Integer Index) const;
50   
51   Standard_EXPORT Standard_Integer IndexOfEdge(const TopoDS_Shape& anEdge) const;
52   
53   Standard_EXPORT virtual Standard_Boolean IsConstant() const = 0;
54   
55   Standard_EXPORT Standard_Boolean IsUClosed() const;
56   
57   Standard_EXPORT Standard_Boolean IsVClosed() const;
58   
59   Standard_EXPORT Standard_Boolean IsDone() const;
60   
61   //! Say if the input shape is a  vertex.
62   Standard_EXPORT virtual Standard_Boolean IsVertex() const = 0;
63   
64   Standard_EXPORT virtual Handle(GeomFill_SectionLaw) ConcatenedLaw() const = 0;
65   
66   Standard_EXPORT virtual GeomAbs_Shape Continuity (const Standard_Integer Index, const Standard_Real TolAngular) const = 0;
67   
68   Standard_EXPORT virtual Standard_Real VertexTol (const Standard_Integer Index, const Standard_Real Param) const = 0;
69   
70   Standard_EXPORT virtual TopoDS_Vertex Vertex (const Standard_Integer Index, const Standard_Real Param) const = 0;
71   
72   Standard_EXPORT virtual void D0 (const Standard_Real U, TopoDS_Shape& S) = 0;
73   
74   Standard_EXPORT void Init (const TopoDS_Wire& W);
75   
76   Standard_EXPORT TopoDS_Edge CurrentEdge();
77
78
79
80
81   DEFINE_STANDARD_RTTIEXT(BRepFill_SectionLaw,Standard_Transient)
82
83 protected:
84
85
86   Handle(GeomFill_HArray1OfSectionLaw) myLaws;
87   Standard_Boolean uclosed;
88   Standard_Boolean vclosed;
89   Standard_Boolean myDone;
90   TopTools_DataMapOfShapeInteger myIndices;
91
92
93 private:
94
95
96   BRepTools_WireExplorer myIterator;
97
98
99 };
100
101
102
103
104
105
106
107 #endif // _BRepFill_SectionLaw_HeaderFile