home *** CD-ROM | disk | FTP | other *** search
Inkscape extension descriptor | 2011-07-08 | 1.1 KB | 23 lines |
- <?xml version="1.0" encoding="UTF-8"?>
- <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
- <_name>Add Nodes</_name>
- <id>org.ekips.filter.addnodes</id>
- <dependency type="executable" location="extensions">addnodes.py</dependency>
- <dependency type="executable" location="extensions">inkex.py</dependency>
- <param name="method" type="optiongroup" _gui-text="Division method">
- <_option value="bymax">By max. segment length</_option>
- <_option value="bynum">By number of segments</_option>
- </param>
- <param name="max" type="float" min="0.1" max="10000.0" _gui-text="Maximum segment length (px)">10.0</param>
- <param name="segments" type="int" min="1" max="1000" _gui-text="Number of segments">2</param>
- <effect needs-live-preview="false">
- <object-type>path</object-type>
- <effects-menu>
- <submenu _name="Modify Path"/>
- </effects-menu>
- </effect>
- <script>
- <command reldir="extensions" interpreter="python">addnodes.py</command>
- </script>
- </inkscape-extension>
-