blob: 88e58b85c0cd19745d6edd9b1f77b3dafc8830df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _HLRBRep_AreaLimit_HeaderFile
#define _HLRBRep_AreaLimit_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_DefineHandle_HeaderFile
#include <Standard_DefineHandle.hxx>
#endif
#ifndef _Handle_HLRBRep_AreaLimit_HeaderFile
#include <Handle_HLRBRep_AreaLimit.hxx>
#endif
#ifndef _HLRAlgo_Intersection_HeaderFile
#include <HLRAlgo_Intersection.hxx>
#endif
#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _TopAbs_State_HeaderFile
#include <TopAbs_State.hxx>
#endif
#ifndef _Handle_HLRBRep_AreaLimit_HeaderFile
#include <Handle_HLRBRep_AreaLimit.hxx>
#endif
#ifndef _MMgt_TShared_HeaderFile
#include <MMgt_TShared.hxx>
#endif
class HLRAlgo_Intersection;
//! The private nested class AreaLimit represents a -- <br>
//! vertex on the Edge with the state on the left and -- <br>
//! the right. <br>
class HLRBRep_AreaLimit : public MMgt_TShared {
public:
//! The previous and next field are set to NULL. <br>
Standard_EXPORT HLRBRep_AreaLimit(const HLRAlgo_Intersection& V,const Standard_Boolean Boundary,const Standard_Boolean Interference,const TopAbs_State StateBefore,const TopAbs_State StateAfter,const TopAbs_State EdgeBefore,const TopAbs_State EdgeAfter);
Standard_EXPORT void StateBefore(const TopAbs_State St) ;
Standard_EXPORT void StateAfter(const TopAbs_State St) ;
Standard_EXPORT void EdgeBefore(const TopAbs_State St) ;
Standard_EXPORT void EdgeAfter(const TopAbs_State St) ;
Standard_EXPORT void Previous(const Handle(HLRBRep_AreaLimit)& P) ;
Standard_EXPORT void Next(const Handle(HLRBRep_AreaLimit)& N) ;
Standard_EXPORT const HLRAlgo_Intersection& Vertex() const;
Standard_EXPORT Standard_Boolean IsBoundary() const;
Standard_EXPORT Standard_Boolean IsInterference() const;
Standard_EXPORT TopAbs_State StateBefore() const;
Standard_EXPORT TopAbs_State StateAfter() const;
Standard_EXPORT TopAbs_State EdgeBefore() const;
Standard_EXPORT TopAbs_State EdgeAfter() const;
Standard_EXPORT Handle_HLRBRep_AreaLimit Previous() const;
Standard_EXPORT Handle_HLRBRep_AreaLimit Next() const;
Standard_EXPORT void Clear() ;
DEFINE_STANDARD_RTTI(HLRBRep_AreaLimit)
protected:
private:
HLRAlgo_Intersection myVertex;
Standard_Boolean myBoundary;
Standard_Boolean myInterference;
TopAbs_State myStateBefore;
TopAbs_State myStateAfter;
TopAbs_State myEdgeBefore;
TopAbs_State myEdgeAfter;
Handle_HLRBRep_AreaLimit myPrevious;
Handle_HLRBRep_AreaLimit myNext;
};
// other Inline functions and methods (like "C++: function call" methods)
#endif
|