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 / addnodes.inx next >
Extensible Markup Language  |  2011-07-08  |  1KB  |  23 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
  3.     <_name>Add Nodes</_name>
  4.     <id>org.ekips.filter.addnodes</id>
  5.     <dependency type="executable" location="extensions">addnodes.py</dependency>
  6.     <dependency type="executable" location="extensions">inkex.py</dependency>
  7.     <param name="method" type="optiongroup" _gui-text="Division method">
  8.         <_option value="bymax">By max. segment length</_option>
  9.         <_option value="bynum">By number of segments</_option>
  10.     </param>
  11.     <param name="max" type="float" min="0.1" max="10000.0" _gui-text="Maximum segment length (px)">10.0</param>
  12.     <param name="segments" type="int" min="1" max="1000" _gui-text="Number of segments">2</param>
  13.     <effect needs-live-preview="false">
  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">addnodes.py</command>
  21.     </script>
  22. </inkscape-extension>
  23.