blob: 9b287359ffca49d07c9873c9daca2f70b6939bdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<_name>Edge 3D</_name>
<id>org.greygreen.inkscape.effects.edge3d</id>
<dependency type="executable" location="extensions">edge3d.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<param name="angle" type="float" min="0.0" max="360.0"
_gui-text="Illumination Angle">45</param>
<param name="shades" type="int" min="2" max="360"
_gui-text="Shades">2</param>
<param name="bw" type="boolean"
_gui-text="Only black and white">0</param>
<param name="thick" type="float" min="1.0" max="50.0"
_gui-text="Stroke width">10</param>
<param name="stddev" type="float" min="1.0" max="100.0"
_gui-text="Blur stdDeviation">5</param>
<param name="blurwidth" type="float" min="1.0" max="10.0"
_gui-text="Blur width">2</param>
<param name="blurheight" type="float" min="1.0" max="10.0"
_gui-text="Blur height">2</param>
<effect>
<object-type>path</object-type>
<effects-menu>
<submenu _name="Modify Path"/>
</effects-menu>
</effect>
<script>
<command reldir="extensions" interpreter="python">edge3d.py</command>
</script>
</inkscape-extension>
|