0027822: Exception access violation is raised in BRepOffsetAPI_MakePipeShell during...
[occt.git] / src / BRepFill / BRepFill_SectionLaw.hxx
CommitLineData
42cf5bc1 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 <Standard_Boolean.hxx>
25#include <BRepTools_WireExplorer.hxx>
26#include <MMgt_TShared.hxx>
27#include <Standard_Integer.hxx>
28#include <GeomAbs_Shape.hxx>
29#include <Standard_Real.hxx>
30class GeomFill_SectionLaw;
31class TopoDS_Vertex;
32class TopoDS_Shape;
33class TopoDS_Wire;
34class TopoDS_Edge;
35
36
37class BRepFill_SectionLaw;
38DEFINE_STANDARD_HANDLE(BRepFill_SectionLaw, MMgt_TShared)
39
40//! Build Section Law, with an Vertex, or an Wire
41class BRepFill_SectionLaw : public MMgt_TShared
42{
43
44public:
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 virtual Standard_Boolean IsConstant() const = 0;
52
53 Standard_EXPORT Standard_Boolean IsUClosed() const;
54
55 Standard_EXPORT Standard_Boolean IsVClosed() const;
56
5da00540 57 Standard_EXPORT Standard_Boolean IsDone() const;
58
42cf5bc1 59 //! Say if the input sahpe is a vertex.
60 Standard_EXPORT virtual Standard_Boolean IsVertex() const = 0;
61
62 Standard_EXPORT virtual Handle(GeomFill_SectionLaw) ConcatenedLaw() const = 0;
63
64 Standard_EXPORT virtual GeomAbs_Shape Continuity (const Standard_Integer Index, const Standard_Real TolAngular) const = 0;
65
66 Standard_EXPORT virtual Standard_Real VertexTol (const Standard_Integer Index, const Standard_Real Param) const = 0;
67
68 Standard_EXPORT virtual TopoDS_Vertex Vertex (const Standard_Integer Index, const Standard_Real Param) const = 0;
69
70 Standard_EXPORT virtual void D0 (const Standard_Real U, TopoDS_Shape& S) = 0;
71
72 Standard_EXPORT void Init (const TopoDS_Wire& W);
73
74 Standard_EXPORT TopoDS_Edge CurrentEdge();
75
76
77
78
92efcf78 79 DEFINE_STANDARD_RTTIEXT(BRepFill_SectionLaw,MMgt_TShared)
42cf5bc1 80
81protected:
82
83
84 Handle(GeomFill_HArray1OfSectionLaw) myLaws;
85 Standard_Boolean uclosed;
86 Standard_Boolean vclosed;
5da00540 87 Standard_Boolean myDone;
42cf5bc1 88
89
90private:
91
92
93 BRepTools_WireExplorer myIterator;
94
95
96};
97
98
99
100
101
102
103
104#endif // _BRepFill_SectionLaw_HeaderFile