Salome HOME
[bos #35151][EDF](2023-T1) Centered rectangle.
[modules/shaper.git] / src / SketchPlugin / doc / filletFeature.rst
index ea7850060489d2e1add25b77933058e697eb11b7..793d8fcb964c0211e5483ec8fa3fee5eee9df06d 100644 (file)
@@ -1,10 +1,50 @@
+.. |fillet.icon|    image:: images/Fillet.png
 
 Fillet
 ======
 
+| The Fillet operation rounds the corner formed by intersection of two sketch elements in a coincident point.
+| The operation trims the elements at the intersection and creates a tangent arc between them.
 
-.. image:: images/Fillet.png
-  :align: center
+To create a Fillet in the active Sketch:
 
-.. centered::
-  Create a fillet
+#. select in the Main Menu *Sketch - > Fillet* item  or
+#. click |fillet.icon| **Fillet** button in Sketch toolbar:
+
+Property panel:
+
+.. figure:: images/Fillet_panel.png
+   :align: center
+
+   Fillet
+
+Input fields:
+
+- **Point** is the coincident point of two intersecting lines (or a line and an arc) selected in the view.
+
+After the point is selected, Fillet preview appears in the view.
+
+**TUI Command**:
+
+.. py:function:: Sketch_1.setFillet(Point)
+
+    :param object: Coincident point.
+    :return: Result object.
+
+.. py:function:: Sketch_1.setFilletWithRadius(Point, Radius)
+
+    :param object: Coincident point.
+    :param real: Radius.
+    :return: Result object.
+
+Result
+""""""
+
+Created Fillet appears in the view.
+
+.. figure:: images/Fillet_res.png
+   :align: center
+
+   Created fillet
+
+**See Also** a sample TUI Script of :ref:`tui_create_fillet` operation.