Salome HOME
Fix documentation warnings.
authorArtem Zhidkov <Artem.Zhidkov@opencascade.com>
Wed, 15 Jul 2020 20:00:23 +0000 (23:00 +0300)
committerArtem Zhidkov <Artem.Zhidkov@opencascade.com>
Thu, 16 Jul 2020 03:53:19 +0000 (06:53 +0300)
src/FeaturesPlugin/doc/fillet1dFeature.rst
src/SketchPlugin/doc/TUI_curvefitting.rst
src/SketchPlugin/doc/curveFittingFeature.rst

index a3d18cf24b94803232053fe6cbf58be1577d356a..af9eaf2ea1524166bfcb4415baaaf4e46384e6a0 100644 (file)
@@ -45,11 +45,11 @@ Input fields:
 
 **TUI Command**:
 
-.. py:function:: model.addFillet(Part_doc, [wires], radius)
+.. py:function:: model.addFillet(Part_doc, wires, radius)
 
-    :param part: The current part object.
-    :param list: A list of wires subject to fillet operation in format *model.selection(TYPE, shape)*.
-    :param number: Radius value.
+    :param document Part_doc: The current part object.
+    :param list wires: A list of wires subject to fillet operation in format *model.selection(TYPE, shape)*.
+    :param double radius: Radius value.
     :return: Created object.
 
 Result
@@ -83,12 +83,12 @@ Input fields:
 
 **TUI Command**:
 
-.. py:function:: model.addFillet(Part_doc, [vertices], radius)
+.. py:function:: model.addFillet(Part_doc, vertices, radius)
   :noindex:
 
-    :param part: The current part object.
-    :param list: A list of vertices subject to fillet operation in format *model.selection(TYPE, shape)*.
-    :param number: Radius value.
+    :param document Part_doc: The current part object.
+    :param list vertices: A list of vertices subject to fillet operation in format *model.selection(TYPE, shape)*.
+    :param double radius: Radius value.
     :return: Created object.
 
 Result
index 1c71914a4c94a91bb815beb45c564f98210cbf22..8e4c0e0bcad2c97a1a2250797448032a62d89c54 100644 (file)
@@ -1,5 +1,5 @@
 
-  .. _tui_create_interpolation:
+  .. _tui_create_sketch_interpolation:
 
 Create interpolation curve
 ==========================
@@ -11,7 +11,7 @@ Create interpolation curve
 :download:`Download this script <examples/interpolation.py>`
 
 
-  .. _tui_create_approximation:
+  .. _tui_create_sketch_approximation:
 
 Create approximation curve
 ==========================
index 11376117b53412dc9b3d87a1a4b88004b91e579d..b339b4ffd4220d9823909bf26fe9092d6ad1687c 100644 (file)
@@ -52,7 +52,7 @@ The created B-spline curve appears in the view.
 .. centered::
    Interpolation curve (non-closed, periodic and closed)
 
-**See Also** a sample TUI Script of :ref:`tui_create_interpolation` operation.
+**See Also** a sample TUI Script of :ref:`tui_create_sketch_interpolation` operation.
 
 
 Approximation
@@ -86,4 +86,4 @@ The created B-spline curve appears in the view.
 .. centered::
    Approximated curve (non-closed, periodic and closed)
 
-**See Also** a sample TUI Script of :ref:`tui_create_approximation` operation.
+**See Also** a sample TUI Script of :ref:`tui_create_sketch_approximation` operation.