]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Issue #3021: Rename "transversal arc" to "perpendicular arc".
authorazv <azv@opencascade.com>
Thu, 3 Oct 2019 09:41:27 +0000 (12:41 +0300)
committerazv <azv@opencascade.com>
Thu, 3 Oct 2019 09:41:27 +0000 (12:41 +0300)
src/SketchPlugin/SketchPlugin_Validators.cpp
src/SketchPlugin/SketchPlugin_msg_fr.ts
src/SketchPlugin/doc/arcFeature.rst
src/SketchPlugin/plugin-Sketch.xml

index 1a255e57e054247afb33338ac225a8f10a539b48..454a476ee2a6498ceaad57ed083b46071744b8c5 100644 (file)
@@ -871,7 +871,7 @@ bool SketchPlugin_ArcTransversalPointValidator::isValid(
     }
   }
   else {
-    theError = "Unable to build transversal arc on %1";
+    theError = "Unable to build perpendicular arc on %1";
     theError.arg(anAttrFeature->getKind());
     return false;
   }
index e82b2f531ad3c05bf1fe97b6b17287ba5fdd094f..3f891bcb01001bcb8229834bfb79fa56c6d1cad6 100644 (file)
       <translation>Point tangent</translation>
     </message>
     <message>
-      <source>Transversal point</source>
-      <translation>Point transversal</translation>
+      <source>Point on the perpendicular line</source>
+      <translation>Point sur la perpendiculaire</translation>
     </message>
   </context>
   <context>
   <context>
     <name>SketchMacroArc:tangent_point:SketchPlugin_ArcTransversalPoint</name>
     <message>
-      <source>Unable to build transversal arc on %1</source>
-      <translation>Impossible de créer un arc transversal sur %1</translation>
+      <source>Unable to build perpendicular arc on %1</source>
+      <translation>Impossible de créer un arc perpendiculaire sur %1</translation>
     </message>
   </context>
 
index b00034cbe5cea3ba6354702427aad3ed87b31f74..8eedaf67a3ad0c6730244950608521e216fc6237 100644 (file)
@@ -26,7 +26,7 @@ There are 4 algorithms for creation of an Arc:
 
 .. 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.
+**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
 """"""""""""""""""""""""
@@ -108,22 +108,22 @@ By transveral point and 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
index 3db87cbf20aca4c7094b5c0788fd52b6e1564673..431120271403c042c037f2db1145717e49d5da4c 100644 (file)
                icon="icons/Sketch/arc_perp_32x32.png"
                title="Perpendicular to line">
             <sketch_shape_selector id="tangent_point"
-                                   label="Transversal point"
+                                   label="Point on the perpendicular line"
                                    tooltip="Select point on line"
                                    shape_types="vertex">
               <validator id="SketchPlugin_ArcTransversalPoint"/>