home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Inkscape / Inkscape-0.48.2-1-win32.exe / share / extensions / generate_voronoi.inx < prev    next >
Extensible Markup Language  |  2011-07-08  |  1KB  |  22 lines

  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="title1" type="description">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.</_param>
  9.     <_param name="title2" type="description">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>
  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.     <effect>
  13.         <object-type>all</object-type>
  14.         <effects-menu>
  15.             <submenu _name="Generate from Path"/>
  16.         </effects-menu>
  17.     </effect>
  18.     <script>
  19.         <command reldir="extensions" interpreter="python">generate_voronoi.py</command>
  20.     </script>
  21. </inkscape-extension>
  22.