summaryrefslogtreecommitdiffstats
path: root/share/extensions/gcodetools_path_to_gcode.inx
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2010-10-08 10:44:19 +0000
committerJazzyNico <nicoduf@yahoo.fr>2010-10-08 10:44:19 +0000
commit6aca8c256aaefbbb14b475a8319c6136c1cfac5b (patch)
treee161baca6646541deeda77205e7ea556f0e0a857 /share/extensions/gcodetools_path_to_gcode.inx
parentFix self-snapping when dragging the transformation center of a selection cont... (diff)
downloadinkscape-6aca8c256aaefbbb14b475a8319c6136c1cfac5b.tar.gz
inkscape-6aca8c256aaefbbb14b475a8319c6136c1cfac5b.zip
Extensions. New Gcode tools extension (Bug #654528).
(bzr r9818)
Diffstat (limited to 'share/extensions/gcodetools_path_to_gcode.inx')
-rw-r--r--share/extensions/gcodetools_path_to_gcode.inx80
1 files changed, 80 insertions, 0 deletions
diff --git a/share/extensions/gcodetools_path_to_gcode.inx b/share/extensions/gcodetools_path_to_gcode.inx
new file mode 100644
index 000000000..1be758370
--- /dev/null
+++ b/share/extensions/gcodetools_path_to_gcode.inx
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
+ <_name>Path to Gcode</_name>
+ <id>ru.cnc-club.filter.gcodetools_ptg</id>
+ <dependency type="executable" location="extensions">gcodetools.py</dependency>
+ <dependency type="executable" location="extensions">inkex.py</dependency>
+ <param name='active-tab' type="notebook">
+
+ <page name='path-to-gcode' _gui-text='Path to Gcode'>
+ <param name="biarc-tolerance" type='float' precision="5" _gui-text='Biarc interpolation tolerance:'>1</param>
+ <param name="biarc-max-split-depth" type="int" _gui-text="Maximum splitting depth:">4</param>
+ <_param name="help" type="description">
+Biarc interpolation tolerance is the maximum distance between path and its approximation.
+The segment will be split into two segments if the distance between path's segment and it's approximation exceeds biarc interpolation tolerance.
+</_param>
+ </page>
+
+ <page name='options' _gui-text='Options'>
+ <param name="Zscale" type="float" precision="5" min="-100000" max="100000" _gui-text="Scale along Z axis:">1</param>
+ <param name="Zoffset" type="float" precision="5" min="-100000" max="100000" _gui-text="Offset along Z axis:">0.0</param>
+ <param name="auto_select_paths" type="boolean" _gui-text="Select all paths if nothing is selected">true</param>
+ <param name="min-arc-radius" type="float" precision="5" min="-1000" max="1000" _gui-text="Minimum arc radius:">0.05</param>
+ </page>
+
+ <page name='preferences' _gui-text='Preferences'>
+ <param name="filename" type="string" _gui-text="File:">output.ngc</param>
+ <param name="add-numeric-suffix-to-filename" type="boolean" _gui-text="Add numeric suffix to filename">true</param>
+
+ <param name="directory" type="string" _gui-text="Directory:">/home</param>
+
+ <param name="Zsafe" type="float" precision="5" min="-1000" max="1000" _gui-text="Z safe height for G00 move over blank:">5</param>
+ <param name="unit" type="enum" _gui-text="Units (mm or in):">
+ <item value="G21 (All units in mm)">mm</item>
+ <item value="G20 (All units in inches)">in</item>
+ </param>
+ <param name="postprocessor" type="enum" _gui-text="Post-processor:">
+ <item value=" ">None</item>
+ <item value="parameterize();">Parameterize Gcode</item>
+ <item value="flip(y);parameterize();">Flip y axis and parameterize Gcode</item>
+ <item value="round(4);">Round all values to 4 digits</item>
+ </param>
+ <param name="postprocessor-custom" type="string" _gui-text="Additional post-processor:"></param>
+
+
+ <param name="create-log" type="boolean" _gui-text="Generate log file">false</param>
+ <param name="log-filename" type="string" _gui-text="Full path to log file:"></param>
+
+ </page>
+
+ <page name='help' _gui-text='Help'>
+ <_param name="fullhelp" type="description">
+Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters.
+This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed.
+
+Tutorials, manuals and support can be found at
+English support forum:
+ http://www.cnc-club.ru/gcodetools
+
+and Russian support forum:
+ http://www.cnc-club.ru/gcodetoolsru
+
+Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas.
+
+Gcodetools ver. 1.6.01
+</_param>
+
+ </page>
+
+ </param>
+ <effect>
+ <effects-menu>
+ <submenu _name="Gcodetools"/>
+ </effects-menu>
+ <object-type>path</object-type>
+ </effect>
+ <script>
+ <command reldir="extensions" interpreter="python">gcodetools.py</command>
+ </script>
+
+</inkscape-extension>