File indexing completed on 2025-01-18 10:03:09
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _BRepCheck_Shell_HeaderFile
0018 #define _BRepCheck_Shell_HeaderFile
0019
0020 #include <Standard.hxx>
0021
0022 #include <Standard_Integer.hxx>
0023 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
0024 #include <BRepCheck_Result.hxx>
0025 #include <TopTools_ListOfShape.hxx>
0026 class TopoDS_Shell;
0027 class TopoDS_Shape;
0028
0029
0030 class BRepCheck_Shell;
0031 DEFINE_STANDARD_HANDLE(BRepCheck_Shell, BRepCheck_Result)
0032
0033
0034 class BRepCheck_Shell : public BRepCheck_Result
0035 {
0036
0037 public:
0038
0039
0040 Standard_EXPORT BRepCheck_Shell(const TopoDS_Shell& S);
0041
0042 Standard_EXPORT void InContext (const TopoDS_Shape& ContextShape) Standard_OVERRIDE;
0043
0044 Standard_EXPORT void Minimum() Standard_OVERRIDE;
0045
0046 Standard_EXPORT void Blind() Standard_OVERRIDE;
0047
0048
0049
0050
0051
0052 Standard_EXPORT BRepCheck_Status Closed (const Standard_Boolean Update = Standard_False);
0053
0054
0055
0056
0057
0058 Standard_EXPORT BRepCheck_Status Orientation (const Standard_Boolean Update = Standard_False);
0059
0060 Standard_EXPORT void SetUnorientable();
0061
0062 Standard_EXPORT Standard_Boolean IsUnorientable() const;
0063
0064 Standard_EXPORT Standard_Integer NbConnectedSet (TopTools_ListOfShape& theSets);
0065
0066
0067
0068
0069 DEFINE_STANDARD_RTTIEXT(BRepCheck_Shell,BRepCheck_Result)
0070
0071 protected:
0072
0073
0074
0075
0076 private:
0077
0078
0079 Standard_Integer myNbori;
0080 Standard_Boolean myCdone;
0081 BRepCheck_Status myCstat;
0082 Standard_Boolean myOdone;
0083 BRepCheck_Status myOstat;
0084 TopTools_IndexedDataMapOfShapeListOfShape myMapEF;
0085
0086
0087 };
0088
0089
0090
0091
0092
0093
0094
0095 #endif