File: radiusrand.inx

package info (click to toggle)
inkscape 0.47.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 122,072 kB
  • ctags: 46,938
  • sloc: cpp: 349,791; ansic: 31,306; python: 14,868; xml: 6,613; sh: 5,041; makefile: 1,773; perl: 1,486; asm: 675; ruby: 148
file content (22 lines) | stat: -rw-r--r-- 1,312 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
   <_name>Jitter nodes</_name>
   <id>org.ekips.filter.radiusrand</id>
       <dependency type="executable" location="extensions">radiusrand.py</dependency>
       <dependency type="executable" location="extensions">inkex.py</dependency>
       <_param name="title" type="description">This effect randomly shifts the nodes (and optionally node handles) of the selected path.</_param>
       <param name="radiusx" type="float" min="0.0" max="1000.0" _gui-text="Maximum displacement in X, px">10.0</param>
       <param name="radiusy" type="float" min="0.0" max="1000.0" _gui-text="Maximum displacement in Y, px">10.0</param>
       <param name="end" type="boolean" _gui-text="Shift nodes">true</param>
       <param name="ctrl" type="boolean" _gui-text="Shift node handles">false</param>
       <param name="norm" type="boolean" _gui-text="Use normal distribution">true</param>
   <effect>
               <object-type>path</object-type>
                <effects-menu>
                    <submenu _name="Modify Path"/>
                </effects-menu>
   </effect>
   <script>
       <command reldir="extensions" interpreter="python">radiusrand.py</command>
   </script>
</inkscape-extension>