X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2Fdoc%2FfilletFeature.rst;h=d2752e9218e7611c20535dc5e7f5daf34927c3fb;hb=4185b589d82fd53989bc0d1924be9ce5923e9f79;hp=08343f728656c1c1f66cc3bb791776460945036c;hpb=547a3952b37fe76f0d4e031a7d8a943ac6a45bb5;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/doc/filletFeature.rst b/src/FeaturesPlugin/doc/filletFeature.rst index 08343f728..d2752e921 100644 --- a/src/FeaturesPlugin/doc/filletFeature.rst +++ b/src/FeaturesPlugin/doc/filletFeature.rst @@ -1,17 +1,95 @@ +.. _featureFillet: + Fillet ====== +**Fillet** feature creates fillets on the edges of a shape. + +To create a Fillet in the active part: + +#. select in the Main Menu *Feature - > Fillet* item or +#. click **Fillet** button in the toolbar + +.. image:: images/fillet.png + :align: center + +.. centered:: + **Fillet** button + +There are 2 types of fillet: + + .. image:: images/fillet_fixed_radius.png + :align: left + fillet by fixed radius -.. image:: images/Fillet.png + .. image:: images/fillet_var_radius.png + :align: left + fillet by variable radius + +Fillet by fixed radius +---------------------- + +The property panel is shown below. + +.. image:: images/FilletFixed.png :align: center .. centered:: - Fillet by fixed radius + Fillet by fixed radius property panel + +Input fields: + +- **Faces or/and edges** panel contains filleted faces and edges. All edges of a face are subject to fillet operation. Faces and edges are selected in 3D OCC viewer; +- **Radius** defines fillet radius. + +**TUI Command**: *model.addFillet(Part_doc, [face,edge], radius)* + +**Arguments**: 1 part + list of faces and edges subject to fillet operation in format *model.selection(TYPE, shape)* + real (radius value). + +Result +"""""" + +Result of **Fillet by fixed radius** is shown below. + +.. image:: images/fillet_fix_rad.png + :align: center + +.. centered:: + Fillet by fixed radius +**See Also** a sample TUI Script of :ref:`tui_create_fillet1` operation. -.. image:: images/Fillet2.png +Fillet by variable radius +------------------------- + +Alternatively, there is a possibility to create a fillet with a variable radius. + +.. image:: images/FilletVarious.png :align: center .. centered:: - Fillet by varyable radius + Fillet by variable radius + +Input fields: + +- **Faces or/and edges** panel contains filleted faces and edges. All edges of a face are subject to fillet operation. Faces and edges are selected in 3D OCC viewer; +- **Start radius** defines the fillet radius at the start of the selected edge(s); +- **End radius** defines the fillet radius at the end of the selected edge(s). + +**TUI Command**: *model.addFillet(Part_doc, [face,edge], R1, R2)* + +**Arguments**: part + list of faces and edges subjected to fillet operation in format *model.selection(TYPE, shape)* + 2 reals (start and end radius values). + +Result +"""""" + +Result of **Fillet by variable radius** is shown below. + +.. image:: images/fillet_var_rad.png + :align: center + +.. centered:: + Fillet by variable radius + +**See Also** a sample TUI Script of :ref:`tui_create_fillet2` operation.