e5f50ac7f52ecab46f00048c2c8e6ec54bf435ad
[occt.git] / src / BRepCheck / BRepCheck_Face.cdl
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 class Face from BRepCheck inherits Result from BRepCheck
18
19         ---Purpose: 
20
21 uses Shape  from TopoDS,
22      Face   from TopoDS,
23      Status from BRepCheck,
24      DataMapOfShapeListOfShape from TopTools
25
26 is
27
28     Create(F: Face from TopoDS)
29     
30         returns Face from BRepCheck;
31
32
33     InContext(me: mutable; ContextShape: Shape from TopoDS);
34     
35
36
37     Minimum(me: mutable);
38     
39
40     
41     Blind(me: mutable);
42     
43     
44     
45     IntersectWires(me: mutable; Update: Boolean from Standard = Standard_False)
46     
47         returns Status from BRepCheck
48         is static;
49
50
51     ClassifyWires(me: mutable; Update: Boolean from Standard = Standard_False)
52     
53         returns Status from BRepCheck
54         is static;
55
56
57
58     OrientationOfWires(me: mutable; 
59                         Update: Boolean from Standard = Standard_False)
60     
61         returns Status from BRepCheck
62         is static;
63
64
65     SetUnorientable(me: mutable)
66     
67         is static;
68
69
70     IsUnorientable(me)
71     
72         returns Boolean from Standard
73         is static;
74
75     GeometricControls(me)
76     
77         returns Boolean from Standard
78         is static;
79
80
81     GeometricControls(me: mutable; B: Boolean from Standard)
82     
83         is static;
84
85
86
87 fields
88
89     myIntdone : Boolean                   from Standard;
90     myIntres  : Status                    from BRepCheck;
91     myImbdone : Boolean                   from Standard;
92     myImbres  : Status                    from BRepCheck;
93     myOridone : Boolean                   from Standard;
94     myOrires  : Status                    from BRepCheck;
95     myMapImb  : DataMapOfShapeListOfShape from TopTools;
96     myGctrl   : Boolean from Standard;
97
98 end Face;