From c1427cf7102ef5ccdab5950e84af32fb1e973a73 Mon Sep 17 00:00:00 2001 From: Peter van der Walt Date: Sun, 28 Feb 2016 15:11:49 +0200 Subject: [PATCH] fix for #109 --- i/svg/js/svg2gcode.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i/svg/js/svg2gcode.js b/i/svg/js/svg2gcode.js index afa1d3f..e499773 100644 --- a/i/svg/js/svg2gcode.js +++ b/i/svg/js/svg2gcode.js @@ -214,7 +214,7 @@ function svg2gcode(svg, settings) { // begin the cut by dropping the tool to the work gcode.push(['G0', 'Z' + (settings.cutZ), - 'F' + '200' + 'F' + settings.feedRate ].join(' ')); // keep track of the current path being cut, as we may need to reverse it @@ -257,7 +257,7 @@ function svg2gcode(svg, settings) { // go safe gcode.push(['G0', 'Z' + settings.safeZ, - 'F' + '300' + 'F' + settings.feedRate ].join(' ')); }