blob: 87951e4582c8b80e0a1a403aae41dfbca2da3a3e (
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
-- File: HLRBRep_FaceData.cdl
-- Created: Thu Apr 17 11:55:00 1997
-- Author: Christophe MARION
-- <cma@partox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class FaceData from HLRBRep
uses
Boolean from Standard,
ShortReal from Standard,
Orientation from TopAbs,
WiresBlock from HLRAlgo,
Surface from HLRBRep,
Face from TopoDS
is
Create returns FaceData from HLRBRep;
Set(me : in out; FG : Face from TopoDS;
Or : Orientation from TopAbs;
Cl : Boolean from Standard;
NW : Integer from Standard)
---Purpose: <Or> is the orientation of the face. <Cl> is true
-- if the face belongs to a closed volume. <NW> is
-- the number of wires ( or block of edges ) of the
-- face.
is static;
SetWire(me : in out; WI : Integer from Standard;
NE : Integer from Standard)
---Purpose: Set <NE> the number of edges of the wire number
-- <WI>.
is static;
SetWEdge(me : in out; WI,EWI,EI : Integer from Standard;
Or : Orientation from TopAbs;
OutL,Inte,Dble,IsoL : Boolean from Standard)
---Purpose: Set the edge number <EWI> of the wire <WI>.
is static;
Selected(me) returns Boolean from Standard
---C++: inline
is static;
Selected(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Back(me) returns Boolean from Standard
---C++: inline
is static;
Back(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Side(me) returns Boolean from Standard
---C++: inline
is static;
Side(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Closed(me) returns Boolean from Standard
---C++: inline
is static;
Closed(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Hiding(me) returns Boolean from Standard
---C++: inline
is static;
Hiding(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Simple(me) returns Boolean from Standard
---C++: inline
is static;
Simple(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Cut(me) returns Boolean from Standard
---C++: inline
is static;
Cut(me : in out; B : Boolean from Standard)
---C++: inline
is static;
WithOutL(me) returns Boolean from Standard
---C++: inline
is static;
WithOutL(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Plane(me) returns Boolean from Standard
---C++: inline
is static;
Plane(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Cylinder(me) returns Boolean from Standard
---C++: inline
is static;
Cylinder(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Cone(me) returns Boolean from Standard
---C++: inline
is static;
Cone(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Sphere(me) returns Boolean from Standard
---C++: inline
is static;
Sphere(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Torus(me) returns Boolean from Standard
---C++: inline
is static;
Torus(me : in out; B : Boolean from Standard)
---C++: inline
is static;
Size(me) returns Real from Standard
---C++: inline
is static;
Size(me : in out; S : Real from Standard)
---C++: inline
is static;
Orientation(me) returns Orientation from TopAbs
---C++: inline
is static;
Orientation(me : in out; O : Orientation from TopAbs)
---C++: inline
is static;
Wires(me : in out) returns WiresBlock from HLRAlgo
---C++: inline
---C++: return &
is static;
Geometry(me : in out) returns Surface from HLRBRep
---C++: inline
---C++: return &
is static;
Tolerance(me) returns ShortReal from Standard
---C++: inline
is static;
fields
myFlags : Boolean from Standard;
myWires : WiresBlock from HLRAlgo;
myGeometry : Surface from HLRBRep;
mySize : Real from Standard;
myTolerance : ShortReal from Standard;
end FaceData;
|