Salome HOME
Correct documentation bugs, adapt for 'Read The Docs' theme (bos #18858)
[modules/shaper.git] / src / SketchPlugin / doc / filletFeature.rst
1 .. |fillet.icon|    image:: images/Fillet.png
2
3 Fillet
4 ======
5
6 | The Fillet operation rounds the corner formed by intersection of two sketch elements in a coincident point.
7 | The operation trims the elements at the intersection and creates a tangent arc between them.
8
9 To create a Fillet in the active Sketch:
10
11 #. select in the Main Menu *Sketch - > Fillet* item  or
12 #. click |fillet.icon| **Fillet** button in Sketch toolbar:
13
14 Property panel:
15
16 .. image:: images/Fillet_panel.png
17   :align: center
18
19 .. centered::
20    Fillet
21
22 Input fields:
23
24 - **Point** is the coincident point of two intersecting lines (or a line and an arc) selected in the view.
25
26 After the point is selected, Fillet preview appears in the view.
27
28 **TUI Command**:
29
30 .. py:function:: Sketch_1.setFillet(Point)
31
32     :param object: Coincident point.
33     :return: Result object.
34
35 .. py:function:: Sketch_1.setFilletWithRadius(Point, Radius)
36
37     :param object: Coincident point.
38     :param real: Radius.
39     :return: Result object.
40
41 Result
42 """"""
43
44 Created Fillet appears in the view.
45
46 .. image:: images/Fillet_res.png
47            :align: center
48
49 .. centered::
50    Created fillet
51
52 **See Also** a sample TUI Script of :ref:`tui_create_fillet` operation.