]> SALOME platform Git repositories - modules/shaper.git/blob - src/FeaturesPlugin/doc/intersectionFeature.rst
Salome HOME
[GITHUB #2] problem in export dialog - difference in STEP vs BREP
[modules/shaper.git] / src / FeaturesPlugin / doc / intersectionFeature.rst
1 .. |intersection_btn.icon|    image:: images/intersection_btn.png
2
3 .. _featureIntersect:
4
5 Intersection
6 ============
7
8 Intersection feature a boolean operation for intersection of a set of main objects with a set of tool objects.
9
10 To perform a boolean operation Intersection in the active part:
11
12 #. select in the Main Menu *Features - > Intersection* item  or
13 #. click |intersection_btn.icon| **Intersection** button in the toolbar
14
15 The following property panel will be opened:
16
17 .. figure:: images/intersection_property_panel.png
18    :align: center
19
20    **Intersection operation**
21
22 **Objects** - contains a list of objects selected in the Object Browser or in the Viewer, which will be intersected. 
23
24 **Fuzzy Parameter** - defines the additional tolerance value used to eliminate tiny results. 
25
26 All intersected objects should be 1- or 2-dimensional (edges, faces, shells). However, it is allowed to select 
27 3-dimensional objects, but only their shells will be taken into operation.
28
29 **TUI Command**:
30
31 .. py:function:: model.addIntersection(Part_doc, Objects, fuzzy)
32
33     :param part: The current part object.
34     :param list: A list of objects.
35     :param real: Additional tolerance used to eliminate tiny results (optional).
36     :return: Created object.
37
38 Result
39 """"""
40
41 The Result of the operation will be a shape which is an intersection of selected objects:
42
43 .. figure:: images/CreatedIntersection.png
44    :align: center
45
46    **Intersection created**
47
48 **See Also** a sample TUI Script of :ref:`tui_create_intersection` operation.