]> SALOME platform Git repositories - plugins/gmshplugin.git/blob - resources/GMSHPlugin.xml
Salome HOME
cbc4ff76c1435a436ecd8f63d3209d591e93c0cb
[plugins/gmshplugin.git] / resources / GMSHPlugin.xml
1 <?xml version='1.0' encoding='us-ascii'?>
2 <!DOCTYPE meshers PUBLIC "" "desktop.dtd">
3 <!--
4   Copyright (C) 2012-2013  ALNEOS
5
6   This library is free software; you can redistribute it and/or
7   modify it under the terms of the GNU Lesser General Public
8   License as published by the Free Software Foundation; either
9   version 2.1 of the License.
10
11   This library is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with this library; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19
20   See http://www.alneos.com/ or email : contact@alneos.fr
21
22 -->
23
24 <!--  GUI customization for MESH component  -->
25
26 <meshers>
27
28 <meshers-group name="GMSH"
29                resources="GMSHPlugin"
30                server-lib="GMSHEngine"
31                gui-lib="GMSHPluginGUI">
32   
33   <hypotheses>
34     <hypothesis type="GMSH_Parameters"
35         label-id="Gmsh Parameters"
36         icon-id="gmsh.png"
37         dim="3"/>
38     <hypothesis type="GMSH_Parameters_2D"
39         label-id="Gmsh Parameters"
40         icon-id="gmsh.png"
41         dim="2"/>
42   </hypotheses>
43   
44   <algorithms>
45
46     <algorithm type="GMSH"
47                label-id="Gmsh"
48                icon-id="gmsh.png"
49                hypos="GMSH_Parameters"
50                dim="3"
51                support-submeshes="false">
52       <python-wrap>
53         <algo>GMSH=Tetrahedron(algo=smeshBuilder.GMSH)</algo>
54         <hypo>GMSH_Parameters=Parameters()</hypo>
55       </python-wrap>
56     </algorithm>
57   
58     <algorithm type="GMSH_2D"
59                label-id="Gmsh"
60                icon-id="gmsh.png"
61                hypos="GMSH_Parameters_2D"
62                output="TRIA,QUAD"
63                dim="2"
64                support-submeshes="false">
65       <python-wrap>
66         <algo>GMSH_2D=Triangle(algo=smeshBuilder.GMSH_2D)</algo>
67         <hypo>GMSH_Parameters_2D=Parameters()</hypo>
68       </python-wrap>
69     </algorithm>
70     
71   </algorithms>
72 </meshers-group>
73
74 </meshers>