1 .. |feature_vertex.icon| image:: images/feature_vertex.png
6 Vertex feature creates one or several vertices using vertices already existing in other objects.
8 To create vertices in the active part:
10 #. select in the Main Menu *Build - > Vertex* item or
11 #. click |feature_vertex.icon| **Vertex** button in the toolbar
13 The following property panel will be opened:
15 .. figure:: images/Vertex.png
20 Select one or several vertices in the viewer. It is also possible to select a whole sketch result or feature in the object browser, then all start and end points of the sketch segments will be added into result. Checkbox **Compute intersections** forces to include intersection vertices of edges of the selected sketch.
22 **Apply** button creates vertices.
24 **Cancel** button cancels operation.
28 .. py:function:: model.addVertex(Part_doc, Shapes, Intersect)
30 :param part: The current part object.
31 :param list: A list of shapes.
32 :param bool: Intersect edges (applicable for sketch only). False by default.
33 :return: Result object.
38 The result of the operation will be a set of vertices created from the selected shapes:
40 .. figure:: images/CreateVertex.png
43 Result of the operation.
45 **See Also** a sample TUI Script of :ref:`tui_create_vertex` operation.