~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to share/extensions/radiusrand.inx

  • Committer: JazzyNico
  • Date: 2011-08-29 20:25:30 UTC
  • Revision ID: nicoduf@yahoo.fr-20110829202530-6deuoz11q90usldv
Code refactoring and merging with trunk (revision 10599).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="UTF-8"?>
2
2
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3
 
   <_name>Jitter nodes</_name>
4
 
   <id>org.ekips.filter.radiusrand</id>
5
 
       <dependency type="executable" location="extensions">radiusrand.py</dependency>
6
 
       <dependency type="executable" location="extensions">inkex.py</dependency>
7
 
       <_param name="title" type="description">This effect randomly shifts the nodes (and optionally node handles) of the selected path.</_param>
8
 
       <param name="radiusx" type="float" min="0.0" max="1000.0" _gui-text="Maximum displacement in X, px">10.0</param>
9
 
       <param name="radiusy" type="float" min="0.0" max="1000.0" _gui-text="Maximum displacement in Y, px">10.0</param>
10
 
       <param name="end" type="boolean" _gui-text="Shift nodes">true</param>
11
 
       <param name="ctrl" type="boolean" _gui-text="Shift node handles">false</param>
12
 
       <param name="norm" type="boolean" _gui-text="Use normal distribution">true</param>
13
 
   <effect>
14
 
               <object-type>path</object-type>
15
 
                <effects-menu>
16
 
                    <submenu _name="Modify Path"/>
17
 
                </effects-menu>
18
 
   </effect>
19
 
   <script>
20
 
       <command reldir="extensions" interpreter="python">radiusrand.py</command>
21
 
   </script>
 
3
    <_name>Jitter nodes</_name>
 
4
    <id>org.ekips.filter.radiusrand</id>
 
5
    <dependency type="executable" location="extensions">radiusrand.py</dependency>
 
6
    <dependency type="executable" location="extensions">inkex.py</dependency>
 
7
    <param name="tab" type="notebook">
 
8
        <page name="Options" _gui-text="Options">
 
9
            <param name="radiusx" type="float" min="0.0" max="1000.0" _gui-text="Maximum displacement in X (px):">10.0</param>
 
10
            <param name="radiusy" type="float" min="0.0" max="1000.0" _gui-text="Maximum displacement in Y (px):">10.0</param>
 
11
            <param name="end" type="boolean" _gui-text="Shift nodes">true</param>
 
12
            <param name="ctrl" type="boolean" _gui-text="Shift node handles">false</param>
 
13
            <param name="norm" type="boolean" _gui-text="Use normal distribution">true</param>
 
14
        </page>
 
15
        <page name="Help" _gui-text="Help">
 
16
            <_param name="title" type="description">This effect randomly shifts the nodes (and optionally node handles) of the selected path.</_param>
 
17
        </page>
 
18
    </param>
 
19
    <effect>
 
20
        <object-type>path</object-type>
 
21
        <effects-menu>
 
22
            <submenu _name="Modify Path"/>
 
23
        </effects-menu>
 
24
    </effect>
 
25
    <script>
 
26
        <command reldir="extensions" interpreter="python">radiusrand.py</command>
 
27
    </script>
22
28
</inkscape-extension>