File indexing completed on 2026-09-21 09:17:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _HLRBRep_AreaLimit_HeaderFile
0018 #define _HLRBRep_AreaLimit_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <HLRAlgo_Intersection.hxx>
0024 #include <TopAbs_State.hxx>
0025 #include <Standard_Transient.hxx>
0026
0027
0028
0029
0030 class HLRBRep_AreaLimit : public Standard_Transient
0031 {
0032
0033 public:
0034
0035 Standard_EXPORT HLRBRep_AreaLimit(const HLRAlgo_Intersection& V,
0036 const bool Boundary,
0037 const bool Interference,
0038 const TopAbs_State StateBefore,
0039 const TopAbs_State StateAfter,
0040 const TopAbs_State EdgeBefore,
0041 const TopAbs_State EdgeAfter);
0042
0043 Standard_EXPORT void StateBefore(const TopAbs_State St);
0044
0045 Standard_EXPORT void StateAfter(const TopAbs_State St);
0046
0047 Standard_EXPORT void EdgeBefore(const TopAbs_State St);
0048
0049 Standard_EXPORT void EdgeAfter(const TopAbs_State St);
0050
0051 Standard_EXPORT void Previous(const occ::handle<HLRBRep_AreaLimit>& P);
0052
0053 Standard_EXPORT void Next(const occ::handle<HLRBRep_AreaLimit>& N);
0054
0055 Standard_EXPORT const HLRAlgo_Intersection& Vertex() const;
0056
0057 Standard_EXPORT bool IsBoundary() const;
0058
0059 Standard_EXPORT bool IsInterference() const;
0060
0061 Standard_EXPORT TopAbs_State StateBefore() const;
0062
0063 Standard_EXPORT TopAbs_State StateAfter() const;
0064
0065 Standard_EXPORT TopAbs_State EdgeBefore() const;
0066
0067 Standard_EXPORT TopAbs_State EdgeAfter() const;
0068
0069 Standard_EXPORT occ::handle<HLRBRep_AreaLimit> Previous() const;
0070
0071 Standard_EXPORT occ::handle<HLRBRep_AreaLimit> Next() const;
0072
0073 Standard_EXPORT void Clear();
0074
0075 DEFINE_STANDARD_RTTIEXT(HLRBRep_AreaLimit, Standard_Transient)
0076
0077 private:
0078 HLRAlgo_Intersection myVertex;
0079 bool myBoundary;
0080 bool myInterference;
0081 TopAbs_State myStateBefore;
0082 TopAbs_State myStateAfter;
0083 TopAbs_State myEdgeBefore;
0084 TopAbs_State myEdgeAfter;
0085 occ::handle<HLRBRep_AreaLimit> myPrevious;
0086 occ::handle<HLRBRep_AreaLimit> myNext;
0087 };
0088
0089 #endif