blob: de65872f5467fb408ab7881ef1e0126ca84a433a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Extrude</name>
<id>org.greygreen.inkscape.effects.extrude</id>
<param name="mode" type="optiongroup" appearance="combo" gui-text="Mode:">
<option value="Lines">Lines</option>
<option value="Polygons">Polygons</option>
</param>
<effect>
<object-type>path</object-type>
<effects-menu>
<submenu name="Generate from Path"/>
</effects-menu>
</effect>
<script>
<command location="inx" interpreter="python">extrude.py</command>
</script>
</inkscape-extension>
|