Salome HOME
Merge from V7_3_BR branch 18/12/2013
[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 \ref restore_presentation_parameters_page "Advanced options" if required.
16 - Press "Apply" or "Apply & Close" button to get the result (GEOM_Object).
17
18 \note This algorithm does not find all types of self-intersections. It is tuned
19       to detect vertex/vertex, vertex/edge, edge/edge, vertex/face and edge/face
20       intersections. Face/face intersections detection is switched off as it
21       is a time-consuming operation that gives an impact on performance. To find
22       all self-intersections use \ref check_self_intersections_page
23       "Detect Self-intersection tool".
24  
25 This operation can be performed using a <b>TUI Command:</b> 
26
27 <em>geompy.MakeFuseList(theShapesList, checkSelfInte)</em>
28
29 <b>Arguments:</b> Name + a list of shapes + an optional flag for self-intersection check.
30
31 There is also a special <b>TUI Command</b> for \b Fuse operation on two shapes  :
32
33 <em>geompy.MakeFuse(s1, s2, checkSelfInte)</em>
34
35 <b>Arguments:</b> Name + 2 shapes + an optional flag for self-intersection check.
36
37 <b>Example:</b>
38
39 \image html fusesn1.png "The initial shapes"
40
41 \image html fusesn2.png "The resulting fuse"
42
43 Our <b>TUI Scripts</b> provide you with useful examples of the use of
44 \ref tui_fuse "Boolean Operations".
45
46 <b> More details </b>
47
48 Please, refer to <a href="SALOME_BOA_PA.pdf">this document</a> for a detailed description of Boolean operations.
49  
50 It provides a general review of the Partition and Boolean
51 operations algorithms, describes the usage methodology and highlights
52 major limitations of these operations.
53
54 Perhaps you also ask yourself : \ref partition_explanation "What is the difference between partition, compounds and fuse operation ?"
55
56 */