From 3f0e8613ac110b1b7c911701fa1d203bf43039eb Mon Sep 17 00:00:00 2001 From: kogolbok Date: Sun, 13 Aug 2017 19:49:26 +0300 Subject: [PATCH] Path: Drilling. Fix drillbit tip compensation. --- src/Mod/Path/PathScripts/PathDrilling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathDrilling.py b/src/Mod/Path/PathScripts/PathDrilling.py index 7cd37e7a01..94cb9da3b5 100644 --- a/src/Mod/Path/PathScripts/PathDrilling.py +++ b/src/Mod/Path/PathScripts/PathDrilling.py @@ -221,7 +221,7 @@ class ObjectDrilling: output += cmd + \ " X" + fmt(p['x']) + \ " Y" + fmt(p['y']) + \ - " Z" + fmt(obj.FinalDepth.Value - tiplength) + qword + pword + \ + " Z" + fmt(obj.FinalDepth.Value + tiplength) + qword + pword + \ " R" + str(obj.RetractHeight.Value) + \ " F" + str(self.vertFeed) + "\n" \