File indexing completed on 2026-09-14 09:13:52
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _BRepCheck_HeaderFile
0018 #define _BRepCheck_HeaderFile
0019
0020 #include <Adaptor3d_Surface.hxx>
0021 #include <BRepCheck_Status.hxx>
0022 #include <NCollection_List.hxx>
0023 #include <NCollection_Shared.hxx>
0024 #include <Standard_OStream.hxx>
0025
0026 class TopoDS_Wire;
0027 class TopoDS_Face;
0028 class TopoDS_Edge;
0029 class Adaptor3d_Curve;
0030
0031
0032
0033 class BRepCheck
0034 {
0035 public:
0036 DEFINE_STANDARD_ALLOC
0037
0038 Standard_EXPORT static void Add(NCollection_List<BRepCheck_Status>& List,
0039 const BRepCheck_Status Stat);
0040
0041 Standard_EXPORT static void Print(const BRepCheck_Status Stat, Standard_OStream& OS);
0042
0043 Standard_EXPORT static bool SelfIntersection(const TopoDS_Wire& W,
0044 const TopoDS_Face& F,
0045 TopoDS_Edge& E1,
0046 TopoDS_Edge& E2);
0047
0048
0049 Standard_EXPORT static double PrecCurve(const Adaptor3d_Curve& aAC3D);
0050
0051
0052 Standard_EXPORT static double PrecSurface(const occ::handle<Adaptor3d_Surface>& aAHSurf);
0053 };
0054
0055 #endif