Back to home page

EIC code displayed by LXR

 
 

    


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 // Created on: 1993-10-29
0002 // Created by: Christophe MARION
0003 // Copyright (c) 1993-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
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 //! All the PolyData of a Shell
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 // _HLRAlgo_PolyShellData_HeaderFile