Code

Translations. French translation minor update.
[inkscape.git] / share / extensions / generate_voronoi.inx
1 <?xml version="1.0" encoding="UTF-8"?>
2 <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3         <_name>Voronoi Pattern</_name>
4         <id>com.vaxxine.generate.voronoi</id>
5         <dependency type="executable" location="extensions">generate_voronoi.py</dependency>
6         <dependency type="executable" location="extensions">voronoi.py</dependency>
7         <dependency type="executable" location="extensions">inkex.py</dependency>
8         <param name="tab" type="notebook">
9         <page name="Options" _gui-text="Options">
10                 <param name="size" type="int" min="2" max="200" _gui-text="Average size of cell (px):">10</param>
11                 <param name="border" type="int" min="-200" max="200" _gui-text="Size of Border (px):">0</param>
12         </page>
13         <page name="Help" _gui-text="Help">
14                 <_param name="title" type="description" xml:space="preserve">Generate a random pattern of Voronoi cells. The pattern will be accessible in the Fill and Stroke dialog. You must select an object or a group.
16 If border is zero, the pattern will be discontinuous at the edges. Use a positive border, preferably greater than the cell size, to produce a smooth join of the pattern at the edges. Use a negative border to reduce the size of the pattern and get an empty border.</_param>
17         </page>
18     </param>
19         <effect>
20                 <object-type>all</object-type>
21                 <effects-menu>
22                         <submenu _name="Generate from Path"/>
23                 </effects-menu>
24         </effect>
25         <script>
26                 <command reldir="extensions" interpreter="python">generate_voronoi.py</command>
27         </script>
28 </inkscape-extension>