Skip to content
This repository has been archived by the owner on Jan 29, 2018. It is now read-only.

Commit

Permalink
fix for #109
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter van der Walt committed Feb 28, 2016
1 parent 1ec5af2 commit c1427cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions i/svg/js/svg2gcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -257,7 +257,7 @@ function svg2gcode(svg, settings) {
// go safe
gcode.push(['G0',
'Z' + settings.safeZ,
'F' + '300'
'F' + settings.feedRate
].join(' '));
}

Expand Down

0 comments on commit c1427cf

Please sign in to comment.