1 .. |arc.icon| image:: images/arc.png
6 Arc feature creates an arc segment in the current Sketch.
8 To add a new Arc to the Sketch:
10 #. select in the Main Menu *Sketch - > Arc* item or
11 #. click |arc.icon| **Arc** button in Sketch toolbar:
13 There are 4 algorithms for creation of an Arc:
15 .. figure:: images/arc_base_32x32.png
19 **By center and two points** creates an arc segment with the given center passing from the start point to the end point on the circle.
21 .. figure:: images/arc_3pt_32x32.png
25 **By three points** creates an arc segment passing from the start point to end point through another point on the circle.
27 .. figure:: images/arc_tang_32x32.png
31 **By tangent point and end point** creates an arc segment with the tangent point and the end point.
33 .. figure:: images/arc_perp_32x32.png
37 **By point on perpendicular line and end point** creates an arc segment perpendicular to a straight line with the start point, connected with boundary of this line, and the end point.
39 -------------------------------------------------------------------------------------------
41 By center and two points
42 """"""""""""""""""""""""
44 .. figure:: images/Arc_panel_base.png
47 Click in the view once to set the center point, then move the mouse and click a second time to set the start point
48 and finally move the mouse and click a third time to set the last passed point.
50 - When entering a center or start point by selecting either a point or a segment, a Coincident constraint is created.
51 - When entering an end point by selecting a segment, a Coincident constraint is created.
52 - When entering an end point, only segments are selectable.
56 .. py:function:: Sketch_1.addArc(CenterX, CenterY, StartX, StartY, EndX, EndY, Inversed)
58 :param real: Center X.
59 :param real: Center Y.
64 :param boolean: Is inversed.
65 :return: Result object.
70 .. figure:: images/Arc_panel_3pt.png
73 Click in the view once to set the start point, then move the mouse and click a second time to set the end point
74 and finally move the mouse and click a third time to set the passed point.
76 - When entering a start or end point by selecting either a point or a segment, a Coincident constraint is created.
77 - When entering a passing point by selecting a point, a Coincident constraint is created.
78 - When entering a passing point by selecting a segment, a Tangent constraint is created.
82 .. py:function:: Sketch_1.addArc(StartX, StartY, EndX, EndY, PassedX, PassedY)
88 :param real: Passed X.
89 :param real: Passed Y.
90 :return: Result object.
92 By tangent point and end point
93 """"""""""""""""""""""""""""""
95 .. figure:: images/Arc_panel_tang.png
98 Select a point on segment in the view to set the tangent point, then move the mouse and click to set the end point.
99 The tangent point by itself is a start point. The edge on which it lies will be tangent to the arc.
101 - When entering a tangent point by selecting a point on segment, a Tangent constraint is created.
102 - When entering an end point by selecting a segment, a Coincident constraint is created.
103 - When entering an end point, only segments are selectable.
107 .. py:function:: Sketch_1.addArc(TangentPoint, EndX, EndY, Inversed)
109 :param object: Tangent Point.
112 :param boolean: Is inversed.
113 :return: Result object.
115 By point on perpendicular line and end point
116 """"""""""""""""""""""""""""""""""""""""""""
118 .. figure:: images/Arc_panel_perp.png
121 Select a point on a straight segment in the view to set the start point, then move the mouse and click to set the end point.
122 The edge on which the start point lies will be perpendicular to the arc (the center of the arc is lying on the edge).
124 - When entering a start point by selecting a point on segment, a Perpendicular constraint is created.
125 - When entering an end point by selecting a segment, a Coincident constraint is created.
126 - When entering an end point, only segments are selectable.
130 .. py:function:: Sketch_1.addArc(StartPoint, EndX, EndY, Inversed, True)
132 :param object: Start Point.
135 :param boolean: Is inversed.
136 :param boolean: Arc is perpendicular (always True).
137 :return: Result object.
142 Created arc appears in the view.
144 .. figure:: images/Arc_res.png
149 **See Also** a sample TUI Script of :ref:`tui_create_arc` operation.