Salome HOME
Revert "Synchronize adm files"
[modules/geom.git] / doc / salome / gui / GEOM / input / fuse_operation.doc
1 /*!
2
3 \page fuse_operation_page Fuse
4
5 \b Fuse operation creates one shape from a list of shapes.
6
7 To produce it, select in the Main Menu <b>Operations - > Boolean - > Fuse</b>.
8
9 \image html bool1.png "Fuse dialog"
10
11 In this dialog:
12 - Input or accept the default \b Name of the resulting shape. 
13 - Click the arrow button and select in the Object Browser or in the Viewer the <b>Objects</b> to be fused.
14 - Activate the corresponding check-box if you wish to <b> Detect Self-intersections </b>.
15 - Activate the corresponding check-box if you wish to <b> remove extra edges </b>.
16 - Activate \ref restore_presentation_parameters_page "Advanced options" if required.
17 - Press "Apply" or "Apply & Close" button to get the result (GEOM_Object).
18
19 \note This algorithm does not find all types of self-intersections. It is tuned
20       to detect vertex/vertex, vertex/edge, edge/edge, vertex/face and edge/face
21       intersections. Face/face intersections detection is switched off as it
22       is a time-consuming operation that gives an impact on performance. To find
23       all self-intersections use \ref check_self_intersections_page
24       "Detect Self-intersection tool".
25  
26 This operation can be performed using a <b>TUI Command:</b> 
27
28 <em>geompy.MakeFuseList(theShapesList, checkSelfInte, rmExtraEdges)</em>
29
30 <b>Arguments:</b> Name + a list of shapes + an optional flag for
31 self-intersection check + an optional flag to remove extra edges.
32
33 There is also a special <b>TUI Command</b> for \b Fuse operation on two shapes  :
34
35 <em>geompy.MakeFuse(s1, s2, checkSelfInte, rmExtraEdges)</em>
36
37 <b>Arguments:</b> Name + 2 shapes + an optional flag for self-intersection
38 check + an optional flag to remove extra edges.
39
40 <b>Example:</b>
41
42 \image html fusesn1.png "The initial shapes"
43
44 \image html fusesn2.png "The resulting fuse"
45
46 Our <b>TUI Scripts</b> provide you with useful examples of the use of
47 \ref tui_fuse "Boolean Operations".
48
49 <b> More details </b>
50
51 Please, refer to <a href="SALOME_BOA_PA.pdf">this document</a> for a detailed description of Boolean operations.
52  
53 It provides a general review of the Partition and Boolean
54 operations algorithms, describes the usage methodology and highlights
55 major limitations of these operations.
56
57 Perhaps you also ask yourself : \ref partition_explanation "What is the difference between partition, compounds and fuse operation ?"
58
59 */