gcodetools_area.inx revision 140cab8883269a4e3603c1861bb20690c8db4564
1N/A<?xml version="1.0" encoding="UTF-8"?>
1N/A<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
1N/A <_name>Area</_name>
1N/A <id>ru.cnc-club.filter.gcodetools_area_area_artefacts_ptg</id>
1N/A <dependency type="executable" location="extensions">gcodetools.py</dependency>
1N/A <dependency type="executable" location="extensions">inkex.py</dependency>
1N/A <param name='active-tab' type="notebook">
1N/A
1N/A <page name='area' _gui-text='Area'>
1N/A <param name="max-area-curves" type="int" min="0" max="1000" _gui-text="Maximum area cutting curves:">100</param>
1N/A <param name="area-inkscape-radius" type="float" min="-1000" max="1000" _gui-text="Area width:">-10</param>
1N/A
1N/A <_param name="help" type="description">
1N/A"Create area offset": creates several Inkscape path offsets to fill original path's area up to "Area radius" value.
1N/A
1N/AOutlines start from "1/2 D" up to "Area width" total width with "D" steps where D is taken from the nearest tool definition ("Tool diameter" value).
1N/AOnly one offset will be created if the "Area width" is equal to "1/2 D".
1N/A </_param>
1N/A </page>
1N/A
1N/A <page name='area_artefacts' _gui-text='Area artefacts'>
1N/A <param name="area-find-artefacts-diameter" type="float" min="0.01" max="1000" _gui-text="Artefact diameter:">5.0</param>
1N/A <param name="area-find-artefacts-action" type="optiongroup" _gui-text="Action:">
1N/A <_option value="mark with an arrow">mark with an arrow</_option>
1N/A <_option value="mark with style">mark with style</_option>
1N/A <_option value="delete">delete</_option>
1N/A </param>
1N/A <_param name="help" type="description">
1N/AUsage:
1N/A1. Select all Area Offsets (gray outlines)
1N/A2. Object/Ungroup (Shift+Ctrl+G)
1N/A3. Press Apply
1N/A
1N/ASuspected small objects will be marked out by colored arrows.
1N/A </_param>
1N/A </page>
1N/A
1N/A <page name='path-to-gcode' _gui-text='Path to Gcode'>
1N/A <param name="biarc-tolerance" type='float' precision="5" _gui-text='Biarc interpolation tolerance:'>1</param>
1N/A <param name="biarc-max-split-depth" type="int" _gui-text="Maximum splitting depth:">4</param>
1N/A <_param name="help" type="description">
1N/ABiarc interpolation tolerance is the maximum distance between path and its approximation.
1N/AThe segment will be split into two segments if the distance between path's segment and it's approximation exceeds biarc interpolation tolerance.
1N/A</_param>
1N/A </page>
1N/A
1N/A <page name='options' _gui-text='Options'>
1N/A <param name="Zscale" type="float" precision="5" min="-100000" max="100000" _gui-text="Scale along Z axis:">1</param>
1N/A <param name="Zoffset" type="float" precision="5" min="-100000" max="100000" _gui-text="Offset along Z axis:">0.0</param>
1N/A <param name="auto_select_paths" type="boolean" _gui-text="Select all paths if nothing is selected">true</param>
1N/A <param name="min-arc-radius" type="float" precision="5" min="-1000" max="1000" _gui-text="Minimum arc radius:">0.05</param>
1N/A </page>
1N/A
1N/A <page name='preferences' _gui-text='Preferences'>
1N/A <param name="filename" type="string" _gui-text="File:">output.ngc</param>
1N/A <param name="add-numeric-suffix-to-filename" type="boolean" _gui-text="Add numeric suffix to filename">true</param>
1N/A
1N/A <param name="directory" type="string" _gui-text="Directory:">/home</param>
1N/A
1N/A <param name="Zsafe" type="float" precision="5" min="-1000" max="1000" _gui-text="Z safe height for G00 move over blank:">5</param>
1N/A <param name="unit" type="enum" _gui-text="Units (mm or in):">
1N/A <item value="G21 (All units in mm)">mm</item>
1N/A <item value="G20 (All units in inches)">in</item>
1N/A </param>
1N/A <param name="postprocessor" type="enum" _gui-text="Post-processor:">
1N/A <item value=" ">None</item>
1N/A <item value="parameterize();">Parameterize Gcode</item>
1N/A <item value="flip(y);parameterize();">Flip y axis and parameterize Gcode</item>
1N/A <item value="round(4);">Round all values to 4 digits</item>
1N/A </param>
1N/A <param name="postprocessor-custom" type="string" _gui-text="Additional post-processor:"></param>
1N/A
1N/A
1N/A <param name="create-log" type="boolean" _gui-text="Generate log file">false</param>
1N/A <param name="log-filename" type="string" _gui-text="Full path to log file:"></param>
1N/A
1N/A </page>
1N/A
1N/A <page name='help' _gui-text='Help'>
1N/A <_param name="fullhelp" type="description">
1N/AGcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters.
1N/AThis plug-in calculates Gcode for paths using circular interpolation or linear motion when needed.
1N/A
1N/ATutorials, manuals and support can be found at
1N/AEnglish support forum:
1N/A http://www.cnc-club.ru/gcodetools
1N/A
1N/Aand Russian support forum:
1N/A http://www.cnc-club.ru/gcodetoolsru
1N/A
1N/ACredits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas.
1N/A
1N/AGcodetools ver. 1.6.01
1N/A</_param>
1N/A
1N/A </page>
1N/A
1N/A </param>
1N/A <effect>
1N/A <effects-menu>
1N/A <submenu _name="Gcodetools"/>
1N/A </effects-menu>
1N/A <object-type>path</object-type>
1N/A </effect>
1N/A <script>
1N/A <command reldir="extensions" interpreter="python">gcodetools.py</command>
1N/A </script>
1N/A
1N/A</inkscape-extension>
1N/A