Skip to content

Commit 2937a1a

Browse files
committed
make overcut work without tooloffset
1 parent 83998e5 commit 2937a1a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gcodeplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ def maybeNone(a):
10951095
if doDedup:
10961096
penData = dedup(penData)
10971097

1098-
if toolOffset > 0.:
1098+
if toolOffset > 0. or overcut > 0.:
10991099
if scalingMode != SCALE_NONE:
11001100
sys.stderr.write("Scaling with tool-offset > 0 will produce unpredictable results.\n")
11011101
op = OffsetProcessor(toolOffset=toolOffset, overcut=overcut, tolerance=tolerance)

mpcnc-10-10

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ align-y=none
77
tolerance=0.05
88
no-send
99
send-speed=115200
10-
area=0,0,400,400
10+
area=0,0,609.6,406.4
1111
input-dpi=1016,1016
1212
safe-delta-z=10
1313
lift-delta-z=10
@@ -17,8 +17,8 @@ z-speed=15
1717
work-z=0
1818
no-hpgl-out
1919
shading-threshold=1
20-
shading-lightest=3
21-
shading-darkest=0.5
20+
shading-lightest=4
21+
shading-darkest=2
2222
shading-angle=45
2323
no-shading-crosshatch
2424
no-stroke-all

0 commit comments

Comments
 (0)