Commit 186c2eaa authored by leonmuller's avatar leonmuller

Remove left to right flipping from rasters

parent 27c6745d
......@@ -646,8 +646,11 @@ class Gcode_tools(inkex.Effect):
return end
first = True
#Flip the image top to bottom
row = curve['data'][::-1]
#Flip the image left to right.
#row = curve['data'][::-1]
#Turnkey - 29/3/15 - No more flipping.
row = curve['data']
previousRight = 99999999999
previousLeft = 0
......
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