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
|
-- File: BRepLib_MakeWire.cdl
-- Created: Thu Jul 8 11:15:02 1993
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1993
class MakeWire from BRepLib inherits MakeShape from BRepLib
---Purpose: Provides methods to build wires.
--
-- A wire may be built :
--
-- * From a single edge.
--
-- * From a wire and an edge.
--
-- - A new wire is created with the edges of the
-- wire + the edge.
--
-- - If the edge is not connnected to the wire the
-- flag NotDone is set and the method Wire will
-- raise an error.
--
-- - The connection may be :
--
-- . Through an existing vertex. The edge is shared.
--
-- . Through a geometric coincidence of vertices.
-- The edge is copied and the vertices from the
-- edge are replaced by the vertices from the
-- wire.
--
-- . The new edge and the connection vertices are
-- kept by the algorithm.
--
--
-- * From 2, 3, 4 edges.
--
-- - A wire is created from the first edge, the
-- following edges are added.
--
-- * From many edges.
--
-- - The following syntax may be used :
--
-- BRepLib_MakeWire MW;
--
-- // for all the edges ...
-- MW.Add(anEdge);
--
-- TopoDS_Wire W = MW;
uses
WireError from BRepLib,
Wire from TopoDS,
Edge from TopoDS,
Vertex from TopoDS,
MapOfShape from TopTools,
ListOfShape from TopTools
raises
NotDone from StdFail
is
Create
---Purpose: NotDone MakeWire.
---Level: Public
returns MakeWire from BRepLib;
----------------------------------------------
-- From edges
----------------------------------------------
Create(E : Edge from TopoDS)
---Purpose: Make a Wire from an edge.
---Level: Public
returns MakeWire from BRepLib;
Create(E1,E2 : Edge from TopoDS)
---Purpose: Make a Wire from two edges.
---Level: Public
returns MakeWire from BRepLib;
Create(E1,E2,E3 : Edge from TopoDS)
---Purpose: Make a Wire from three edges.
---Level: Public
returns MakeWire from BRepLib;
Create(E1,E2,E3,E4 : Edge from TopoDS)
---Purpose: Make a Wire from four edges.
---Level: Public
returns MakeWire from BRepLib;
----------------------------------------------
-- From wire and edge
----------------------------------------------
Create(W : Wire from TopoDS)
---Purpose: Make a Wire from a Wire. Usefull for adding later.
---Level: Public
returns MakeWire from BRepLib;
Create(W : Wire from TopoDS; E : Edge from TopoDS)
---Purpose: Add an edge to a wire.
---Level: Public
returns MakeWire from BRepLib;
----------------------------------------------
-- Auxiliary methods
----------------------------------------------
Add(me : in out; E : Edge from TopoDS)
---Purpose: Add the edge <E> to the current wire.
---Level: Public
is static;
Add(me : in out; W : Wire from TopoDS)
---Purpose: Add the edges of <W> to the current wire.
---Level: Public
is static;
Add(me : in out; L : ListOfShape from TopTools)
---Purpose: Add the edges of <L> to the current wire.
-- The edges are not to be consecutive. But they are
-- to be all connected geometrically or topologically.
---Level: Public
is static;
----------------------------------------------
-- Results
----------------------------------------------
Error(me) returns WireError from BRepLib
---Level: Public
is static;
Wire(me) returns Wire from TopoDS
---Purpose: Returns the new wire.
--
---C++: return const &
---C++: alias "Standard_EXPORT operator TopoDS_Wire() const;"
---Level: Public
raises
NotDone from StdFail
is static;
Edge(me) returns Edge from TopoDS
---Purpose: Returns the last edge added to the wire.
--
---C++: return const &
---Level: Public
raises
NotDone from StdFail
is static;
Vertex(me) returns Vertex from TopoDS
---Purpose: Returns the last connecting vertex.
--
---C++: return const &
---Level: Public
raises
NotDone from StdFail
is static;
fields
myError : WireError from BRepLib;
myEdge : Edge from TopoDS;
myVertex : Vertex from TopoDS;
myVertices : MapOfShape from TopTools;
FirstVertex : Vertex from TopoDS;
VF, VL : Vertex from TopoDS;
end MakeWire;
|