blob: 63a67f7eea8fb06f37a4bbd588966c765fd621d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Rubber Stretch</name>
<id>org.inkscape.path.rubber_stretch</id>
<param name="ratio" type="float" gui-text="Strength (%):" min="-400" max="400">25</param>
<param name="curve" type="float" gui-text="Curve (%):" min="-400" max="400">25</param>
<effect>
<object-type>path</object-type>
<effects-menu>
<submenu name="Modify Path"/>
</effects-menu>
</effect>
<script>
<command location="inx" interpreter="python">rubberstretch.py</command>
</script>
</inkscape-extension>
|