1 .. |feature_wire.icon| image:: images/feature_wire.png
6 Wire feature creates a wire using edges already existing in other objects.
8 To create a wire in the active part:
10 #. select in the Main Menu *Build - > Wire* item or
11 #. click |feature_wire.icon| **Wire** button in the toolbar
13 The following property panel will be opened:
15 .. figure:: images/Wire.png
20 Select one or several edges in the viewer. For automatic selection of a closed contour starting from the selected edge it is necessary to press **Add contour** button.
22 Moreover, the full sketch can be selected. In this case, a set of wires is composed using edges of the sketch.
23 Checkbox **Compute intersections** forces to split sketch edges in the points of intersection.
25 **Apply** button creates a wire.
27 **Cancel** button cancels the operation.
31 .. py:function:: model.addWire(Part_doc, Shapes, Intersect)
33 :param part: The current part object.
34 :param list: A list of shapes.
35 :param bool: Split edges by intersection points. False by default.
36 :return: Result object.
41 The result of the operation will be a wire created from the selected shapes:
43 .. figure:: images/CreateWire.png
46 Result of the operation.
48 **See Also** a sample TUI Script of :ref:`tui_create_wire` operation.