]> SALOME platform Git repositories - plugins/gmshplugin.git/blob - resources/GMSHPlugin.xml
Salome HOME
Increment version: 9.10.0
[plugins/gmshplugin.git] / resources / GMSHPlugin.xml
1 <?xml version='1.0' encoding='us-ascii'?>
2 <!DOCTYPE meshers PUBLIC "" "desktop.dtd">
3
4 <meshers>
5
6 <meshers-group name="GMSH"
7                resources="GMSHPlugin"
8                server-lib="GMSHEngine"
9                gui-lib="GMSHPluginGUI">
10   
11   <hypotheses>
12     <hypothesis type="GMSH_Parameters"
13         label-id="Gmsh Parameters"
14         icon-id="gmsh.png"
15         dim="3"/>
16     <hypothesis type="GMSH_Parameters_2D"
17         label-id="Gmsh Parameters"
18         icon-id="gmsh.png"
19         dim="2"/>
20   </hypotheses>
21   
22   <algorithms>
23
24     <algorithm type="GMSH"
25                label-id="Gmsh"
26                icon-id="gmsh.png"
27                hypos="GMSH_Parameters"
28                dim="3"
29                support-submeshes="true">
30       <python-wrap>
31         <algo>GMSH=Tetrahedron(algo=smeshBuilder.GMSH)</algo>
32         <hypo>GMSH_Parameters=Parameters()</hypo>
33       </python-wrap>
34     </algorithm>
35   
36     <algorithm type="GMSH_2D"
37                label-id="Gmsh"
38                icon-id="gmsh.png"
39                hypos="GMSH_Parameters_2D"
40                output="TRIA,QUAD"
41                dim="2"
42                support-submeshes="true">
43       <python-wrap>
44         <algo>GMSH_2D=Triangle(algo=smeshBuilder.GMSH_2D)</algo>
45         <hypo>GMSH_Parameters_2D=Parameters()</hypo>
46       </python-wrap>
47     </algorithm>
48     
49   </algorithms>
50 </meshers-group>
51
52 </meshers>