blob: 7d1e01711a2e04e38a762e5ad0b07a2e47f34608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
-- File: BRepCheck_Face.cdl
-- Created: Fri Dec 15 11:48:23 1995
-- Author: Jacques GOUSSARD
-- <jag@bravox>
---Copyright: Matra Datavision 1995
class Face from BRepCheck inherits Result from BRepCheck
---Purpose:
uses Shape from TopoDS,
Face from TopoDS,
Status from BRepCheck,
DataMapOfShapeListOfShape from TopTools
is
Create(F: Face from TopoDS)
returns mutable Face from BRepCheck;
InContext(me: mutable; ContextShape: Shape from TopoDS);
Minimum(me: mutable);
Blind(me: mutable);
IntersectWires(me: mutable; Update: Boolean from Standard = Standard_False)
returns Status from BRepCheck
is static;
ClassifyWires(me: mutable; Update: Boolean from Standard = Standard_False)
returns Status from BRepCheck
is static;
OrientationOfWires(me: mutable;
Update: Boolean from Standard = Standard_False)
returns Status from BRepCheck
is static;
SetUnorientable(me: mutable)
is static;
IsUnorientable(me)
returns Boolean from Standard
is static;
GeometricControls(me)
returns Boolean from Standard
is static;
GeometricControls(me: mutable; B: Boolean from Standard)
is static;
fields
myIntdone : Boolean from Standard;
myIntres : Status from BRepCheck;
myImbdone : Boolean from Standard;
myImbres : Status from BRepCheck;
myOridone : Boolean from Standard;
myOrires : Status from BRepCheck;
myMapImb : DataMapOfShapeListOfShape from TopTools;
myGctrl : Boolean from Standard;
end Face;
|