Warning, file /include/opencascade/HLRAlgo_PolyShellData.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _HLRAlgo_PolyShellData_HeaderFile
0018 #define _HLRAlgo_PolyShellData_HeaderFile
0019
0020 #include <Bnd_Box.hxx>
0021 #include <HLRAlgo_BiPoint.hxx>
0022 #include <NCollection_List.hxx>
0023 #include <HLRAlgo_PolyData.hxx>
0024 #include <Standard_Transient.hxx>
0025 #include <Standard_Type.hxx>
0026
0027
0028 class HLRAlgo_PolyShellData : public Standard_Transient
0029 {
0030
0031 public:
0032 struct ShellIndices
0033 {
0034 int Min, Max;
0035 };
0036
0037 Standard_EXPORT HLRAlgo_PolyShellData(const int nbFace);
0038
0039 Standard_EXPORT void UpdateGlobalMinMax(Bnd_Box& theBox);
0040
0041 Standard_EXPORT void UpdateHiding(const int nbHiding);
0042
0043 bool Hiding() const { return !myHPolHi.IsEmpty(); }
0044
0045 NCollection_Array1<occ::handle<HLRAlgo_PolyData>>& PolyData() { return myPolyg; }
0046
0047 NCollection_Array1<occ::handle<HLRAlgo_PolyData>>& HidingPolyData() { return myHPolHi; }
0048
0049 NCollection_List<HLRAlgo_BiPoint>& Edges() { return mySegList; }
0050
0051 ShellIndices& Indices() { return myIndices; }
0052
0053 DEFINE_STANDARD_RTTIEXT(HLRAlgo_PolyShellData, Standard_Transient)
0054
0055 private:
0056 ShellIndices myIndices;
0057 NCollection_Array1<occ::handle<HLRAlgo_PolyData>> myPolyg;
0058 NCollection_Array1<occ::handle<HLRAlgo_PolyData>> myHPolHi;
0059 NCollection_List<HLRAlgo_BiPoint> mySegList;
0060 };
0061
0062 #endif