0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / BRepCheck / BRepCheck_Face.hxx
CommitLineData
42cf5bc1 1// Created on: 1995-12-15
2// Created by: Jacques GOUSSARD
3// Copyright (c) 1995-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _BRepCheck_Face_HeaderFile
18#define _BRepCheck_Face_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Standard_Boolean.hxx>
24#include <BRepCheck_Status.hxx>
25#include <TopTools_DataMapOfShapeListOfShape.hxx>
26#include <BRepCheck_Result.hxx>
27class TopoDS_Face;
28class TopoDS_Shape;
29
30
31class BRepCheck_Face;
32DEFINE_STANDARD_HANDLE(BRepCheck_Face, BRepCheck_Result)
33
34
35class BRepCheck_Face : public BRepCheck_Result
36{
37
38public:
39
40
41 Standard_EXPORT BRepCheck_Face(const TopoDS_Face& F);
42
79104795 43 Standard_EXPORT void InContext (const TopoDS_Shape& ContextShape) Standard_OVERRIDE;
42cf5bc1 44
79104795 45 Standard_EXPORT void Minimum() Standard_OVERRIDE;
42cf5bc1 46
79104795 47 Standard_EXPORT void Blind() Standard_OVERRIDE;
42cf5bc1 48
49 Standard_EXPORT BRepCheck_Status IntersectWires (const Standard_Boolean Update = Standard_False);
50
51 Standard_EXPORT BRepCheck_Status ClassifyWires (const Standard_Boolean Update = Standard_False);
52
53 Standard_EXPORT BRepCheck_Status OrientationOfWires (const Standard_Boolean Update = Standard_False);
54
55 Standard_EXPORT void SetUnorientable();
56
57 //! Sets status of Face;
58 Standard_EXPORT void SetStatus (const BRepCheck_Status theStatus);
59
60 Standard_EXPORT Standard_Boolean IsUnorientable() const;
61
62 Standard_EXPORT Standard_Boolean GeometricControls() const;
63
64 Standard_EXPORT void GeometricControls (const Standard_Boolean B);
65
66
67
68
92efcf78 69 DEFINE_STANDARD_RTTIEXT(BRepCheck_Face,BRepCheck_Result)
42cf5bc1 70
71protected:
72
73
74
75
76private:
77
78
79 Standard_Boolean myIntdone;
80 BRepCheck_Status myIntres;
81 Standard_Boolean myImbdone;
82 BRepCheck_Status myImbres;
83 Standard_Boolean myOridone;
84 BRepCheck_Status myOrires;
85 TopTools_DataMapOfShapeListOfShape myMapImb;
86 Standard_Boolean myGctrl;
87
88
89};
90
91
92
93
94
95
96
97#endif // _BRepCheck_Face_HeaderFile