1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Clean up path</name>
<id>org.cutlings.clean_up_path</id>
<dependency type="executable" location="inx">clean_up_path.py</dependency>
<param name="name" type="notebook">
<page name="options" gui-text="Options">
<label xml:space="preserve">
Clean up path by removing duplicate nodes and joining close nodes from selected paths.
</label>
<param name="minUse" type="bool" gui-text="Interpolate nodes of segments with total length less than specified length">false</param>
<param name="minlength" indent="4" type="float" precision="2" min="0" max="100" appearance="full" gui-text="Minimum segment length">1.0</param>
<param name="minUseSub" type="bool" gui-text="Remove subpaths with total length less than specified length">false</param>
<param name="minlengthSub" indent="4" type="float" precision="2" min="0" max="100" appearance="full" gui-text="Minimum subpath length">1.0</param>
<param name="closeSub" type="bool" gui-text="Close subpaths where start and end node have a distance of less than">false</param>
<param name="maxdistClose" indent="4" type="float" precision="2" min="0" max="100" appearance="full" gui-text="Limit">1.0</param>
<param name="joinEndSub" type="bool" gui-text="Join end nodes of separate subpaths where distance less than">false</param>
<param name="maxdistJoin" indent="4" type="float" precision="2" min="0" max="100" appearance="full" gui-text="Limit">1.0</param>
<param name="allow_reverse" indent="4" type="bool" gui-text="Allow reversing direction of subpaths">true</param>
<param name="option_join" indent="4" type="optiongroup" appearance="radio" gui-text="Join subpaths by">
<option value="1">interpolating nodes</option>
<option value="2">adding straight line segment</option>
</param>
<label xml:space="preserve">
Unit as defined in document (File->Document Properties).
</label>
</page>
<page name="help" gui-text="Information">
<label xml:space="preserve">
Originally created to clean up paths for cutters/plotters by removing excessive nodes or small gaps.
True duplicate nodes (exact same coordinates) and subpaths with zero length will always be removed.
To join paths, make sure that the paths to consider are already combined (subpath of the same path).
To combine paths, select them and press Ctrl+K.
</label>
</page>
</param>
<effect>
<object-type>path</object-type>
<effects-menu>
<submenu name="Modify Path"/>
</effects-menu>
</effect>
<script>
<command location="inx" interpreter="python">clean_up_path.py</command>
</script>
</inkscape-extension>
|