Salome HOME
Correct documentation bugs, adapt for 'Read The Docs' theme (bos #18858)
[modules/shaper.git] / src / SketchPlugin / doc / arcFeature.rst
index b00034cbe5cea3ba6354702427aad3ed87b31f74..57f0eb85dce856e646733407fb4b1e84c9cdd6be 100644 (file)
@@ -14,19 +14,29 @@ There are 4 algorithms for creation of an Arc:
 
 .. image:: images/arc_base_32x32.png
    :align: left
+   :height: 24px
+
 **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.
 
 .. image:: images/arc_3pt_32x32.png
    :align: left
+   :height: 24px
+
 **By three points** creates an arc segment passing from the start point to end point through another point on the circle.
 
 .. image:: images/arc_tang_32x32.png
    :align: left
+   :height: 24px
+
 **By tangent point and end point** creates an arc segment with the tangent point and the end point.
 
 .. image:: images/arc_perp_32x32.png
    :align: left
-**By transversal point 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.
+   :height: 24px
+
+**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.
+
+-------------------------------------------------------------------------------------------
 
 By center and two points
 """"""""""""""""""""""""
@@ -79,8 +89,8 @@ and finally move the mouse and click a third time to set the passed point.
     :param real: Passed Y.
     :return: Result object.
 
-By tangent point and point
-""""""""""""""""""""""""""
+By tangent point and end point
+""""""""""""""""""""""""""""""
 
 .. image:: images/Arc_panel_tang.png
    :align: center
@@ -102,28 +112,28 @@ The tangent point by itself is a start point. The edge on which it lies will be
     :param boolean: Is inversed.
     :return: Result object.
 
-By transveral point and point
-"""""""""""""""""""""""""""""
+By point on perpendicular line and end point
+""""""""""""""""""""""""""""""""""""""""""""
 
 .. image:: images/Arc_panel_perp.png
    :align: center
 
-Select a point on a straight segment in the view to set the transversal point, then move the mouse and click to set the end point.
-The transversal point by itself is a start point. The edge on which it lies will be perpendicular to the arc (the center of the arc is lying on the edge).
+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.
+The edge on which the start point lies will be perpendicular to the arc (the center of the arc is lying on the edge).
 
-- When entering a transversal point by selecting a point on segment, a Perpendicular constraint is created.
+- When entering a start point by selecting a point on segment, a Perpendicular constraint is created.
 - When entering an end point by selecting a segment, a Coincident constraint is created.
 - When entering an end point, only segments are selectable.
 
 **TUI Command**:
 
-.. py:function:: Sketch_1.addArc(TransversalPoint, EndX, EndY, Inversed, True)
+.. py:function:: Sketch_1.addArc(StartPoint, EndX, EndY, Inversed, True)
 
-    :param object: Transversal Point.
+    :param object: Start Point.
     :param real: End X.
     :param real: End Y.
     :param boolean: Is inversed.
-    :param boolean: Arc is transversal (always True).
+    :param boolean: Arc is perpendicular (always True).
     :return: Result object.
 
 Result
@@ -135,6 +145,6 @@ Created arc appears in the view.
           :align: center
 
 .. centered::
-   Circle created
+   Arc created
 
-**See Also** a sample TUI Script of :ref:`tui_create_arc` operation.
\ No newline at end of file
+**See Also** a sample TUI Script of :ref:`tui_create_arc` operation.