Commit 6fe1c3ae authored by leonmuller's avatar leonmuller

Fixed a bug with raster feedrates

parent 00eff7af
...@@ -609,7 +609,7 @@ class Gcode_tools(inkex.Effect): ...@@ -609,7 +609,7 @@ class Gcode_tools(inkex.Effect):
#Do not remove these two lines, they're important. Will not raster correctly if feedrate is not set prior. #Do not remove these two lines, they're important. Will not raster correctly if feedrate is not set prior.
#Move fast to point, cut at correct speed. #Move fast to point, cut at correct speed.
gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' '+self.options.Mfeed+'\n' gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' F'+str(self.options.Mfeed)+'\n'
gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' '+cutFeed+'\n' gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' '+cutFeed+'\n'
#def get_chunks(arr, chunk_size = 51): #def get_chunks(arr, chunk_size = 51):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment