1 .. |projection.icon| image:: images/Projection.png
6 | The Projection operation creates a projection of 3D edge or vertex onto the sketch plane.
7 | The result of projection is a line.
9 To create a Projection in the active Sketch:
11 #. select in the Main Menu *Sketch - > Projection* item or
12 #. click |projection.icon| **Projection** button in Sketch toolbar:
16 .. figure:: images/Projection_panel.png
23 - **Object** is the 3D object (edge or vertex) to project onto the sketch plane.
24 - **Include into the sketch result** option defines whether to include the projection line into the sketch result.
28 .. py:function:: Sketch_1.addProjection(EdgeOrVertex, IncludeIntoResult)
30 :param object: Edge or vertex.
31 :param boolean: Include into the result flag.
32 :return: Result object.
34 .. py:function:: Sketch_1.addProjection(EdgeOrVertexName, IncludeIntoResult)
36 :param object: Edge or vertex name.
37 :param boolean: Include into the result flag.
38 :return: Result object.
43 Created Projection appears in the view.
45 .. figure:: images/Projection_res.png
48 Created projection (purple line)
50 **See Also** a sample TUI Script of :ref:`tui_create_projection` operation.