From ed11fbd82a1e768a7eca3fd264769843e4b229d4 Mon Sep 17 00:00:00 2001 From: Stewart Allen Date: Tue, 11 Nov 2025 15:51:12 -0500 Subject: [PATCH] fix 'safe' moves during operation changes to be moves, not cuts --- src/kiri/mode/cam/prepare.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/kiri/mode/cam/prepare.js b/src/kiri/mode/cam/prepare.js index 75466311..9db0a70e 100644 --- a/src/kiri/mode/cam/prepare.js +++ b/src/kiri/mode/cam/prepare.js @@ -338,9 +338,9 @@ export function prepEach(widget, settings, print, firstPoint, update) { // 2. move to safe z of new point preserving old angle // 3. move to safe z of new point with new angle if (lop !== currentOp && lastPoint) { - camOut(lastPoint.clone().setZ(zsafe).setA(lastPoint.a), 1); - camOut(point.clone().setZ(zsafe).setA(lastPoint.a), 1); - camOut(point.clone().setZ(zsafe), 1); + camOut(lastPoint.clone().setZ(zsafe).setA(lastPoint.a), 0); + camOut(point.clone().setZ(zsafe).setA(lastPoint.a), 0); + camOut(point.clone().setZ(zsafe), 0); } if (lop?.type === 'index' && lop !== currentOp ) {