3 \page using_operations_on_groups_page Using operations on groups
5 \n In MESH you can perform some Boolean operations on groups, which
6 belong to one and the same mesh.
8 <li>\ref union_anchor "Union"</li>
9 <li>\ref intersection_anchor "Intersection"</li>
10 <li>\ref cut_anchor "Cut"</li>
16 <h2>Union of two groups</h2>
18 This operation allows to create a new group in such a way that all
19 mesh elements that are present in the initial groups will be added to
22 <em>To union two groups:</em>
24 <li>In the \b Mesh menu select the <b>Union Groups</b> item. The following
25 dialog box will appear:
27 \image html uniongroups.png
29 In this dialog box you should specify the name of the resulting group
30 and two groups which will be united.
32 For example, we have two groups Group1 and Group2.
33 \n The result of their \b Union will be Group12:
35 \image html image133.gif
36 <center>Group1</center>
38 \image html image134.gif
39 <center>Group2</center>
41 \image html image135.gif
42 <center>Group12</center>
44 <li>Click the \b Ok or \b Apply button to confirm creation of the group.</li>
47 <b>See Also</b> a sample TUI Script of a
48 \ref tui_union_of_two_groups "Union of two Groups" operation.
51 \anchor intersection_anchor
52 <h2>Intersection of two groups</h2>
54 This operation allows to create a new group in such a way that all
55 mesh elements that are present in both initial groups are added to the
58 <em>To intersect two groups:</em>
60 <li>In the \b Mesh menu select the <b>Intersect Groups</b> item. The
61 following dialog box will appear:
63 \image html intersectgroups.png
65 In this dialog box you should specify the name of the resulting group
66 and two groups which will be intersected.
68 For example, we have two groups Group1 and Group2.
69 \n The result of their \b Intersection will be Group12a:
71 \image html image133.gif
72 <center>Group1</center>
74 \image html image134.gif
75 <center>Group2</center>
77 \image html image136.gif
78 <center>Group12a</center>
80 <li>Click the \b Ok or \b Apply button to confirm creation of the group.</li>
83 <b>See Also</b> a sample TUI Script of an
84 \ref tui_intersection_of_two_groups "Intersection of two Groups" operation.
88 <h2>Cut of two groups</h2>
90 This operation allows to create a new group in such a way that all
91 mesh elements that are present in the main group but are absent in the
92 tool group are added to the new one.
94 <em>To cut two groups:</em>
96 <li>In the \b Mesh menu select the <b>Cut Groups</b> item. The
97 following dialog box will appear:
99 \image html cutgroups.png
101 In this dialog box you should specify the name of the resulting group
102 and two groups which will be cut.
104 For example, we have two groups Group1 and Group2.
105 \n The result of their \b Cut will be Group12b:
107 \image html image133.gif
108 <center>Group1</center>
110 \image html image134.gif
111 <center>Group2</center>
113 \image html image137.gif
114 <center>Group12b</center>
116 <li>Click the \b Ok or \b Apply button to confirm creation of the
120 <b>See Also</b> a sample TUI Script of a
121 \ref tui_cut_of_two_groups "Cut of two Groups" operation.