Skip to content

Commit 93ae095

Browse files
committed
correct tool shadow epsilon
1 parent e569dd5 commit 93ae095

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/kiri/mode/cam/work/op-area.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class OpArea extends CamOp {
142142
let pinc = 1 / polys.length;
143143
for (let area of polys) {
144144
let bounds = area.getBounds3D();
145-
let ts_off = toolDiam / 2 - ts_eps + (op.leave_xy ?? 0);
145+
let ts_off = toolDiam / 2 + (op.leave_xy ?? 0) + ts_eps;
146146
let offopt = {
147147
arc: 250,
148148
join: roundSharps ? ClipperLib.JoinType.jtRound : undefined,

0 commit comments

Comments
 (0)