1<?xml version="1.0" encoding="UTF-8"?>
2<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3  <name>Path to Mesh-Gradient</name>
4  <id>org.inkscape.meshes.path_to_mesh</id>
5
6  <param name="tab" type="notebook">
7
8    <page name="path2mesh_tab" gui-text="Options">
9      <label>Convert each selected path to 1x1 mesh</label>
10    </page>
11
12    <page name="about_tab" gui-text="About">
13      <label appearance="header">Path to mesh</label>
14      <label>Convert geometry of selected path (4 corners) to a meshgradient</label>
15    </page>
16
17  </param>
18
19  <effect>
20    <object-type>all</object-type>
21    <effects-menu>
22      <submenu name="Modify Path">
23        <submenu name="Mesh">
24        </submenu>
25      </submenu>
26    </effects-menu>
27  </effect>
28
29  <script>
30    <command location="inx" interpreter="python">path_mesh_p2m.py</command>
31  </script>
32</inkscape-extension>
33