Salome HOME
1. Manage color of construction point using preferences dialog box.
[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 .. figure:: images/Fillet_panel.png
17    :align: center
18
19    Fillet
20
21 Input fields:
22
23 - **Point** is the coincident point of two intersecting lines (or a line and an arc) selected in the view.
24
25 After the point is selected, Fillet preview appears in the view.
26
27 **TUI Command**:
28
29 .. py:function:: Sketch_1.setFillet(Point)
30
31     :param object: Coincident point.
32     :return: Result object.
33
34 .. py:function:: Sketch_1.setFilletWithRadius(Point, Radius)
35
36     :param object: Coincident point.
37     :param real: Radius.
38     :return: Result object.
39
40 Result
41 """"""
42
43 Created Fillet appears in the view.
44
45 .. figure:: images/Fillet_res.png
46    :align: center
47
48    Created fillet
49
50 **See Also** a sample TUI Script of :ref:`tui_create_fillet` operation.