From f42c90f459badded8b8fa8445d325d4f05e489a8 Mon Sep 17 00:00:00 2001 From: sliptonic Date: Sun, 12 Jun 2016 14:23:06 -0500 Subject: [PATCH] Fix for partial libarea pockets. --- src/Mod/Path/PathScripts/PathAreaUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathAreaUtils.py b/src/Mod/Path/PathScripts/PathAreaUtils.py index c7e9ee7f5c34..e78c6188a68c 100644 --- a/src/Mod/Path/PathScripts/PathAreaUtils.py +++ b/src/Mod/Path/PathScripts/PathAreaUtils.py @@ -375,7 +375,7 @@ def pocket(a,tool_radius, extra_offset, stepover, depthparams, from_center, keep area_for_feed_possible = area.Area(a) area_for_feed_possible.Offset(extra_offset - 0.01) - use_internal_function = (area.holes_linked() == False) # use internal function, if area module is the Clipper library + use_internal_function = False #(area.holes_linked() == False) # use internal function, if area module is the Clipper library if use_internal_function: curve_list = a.MakePocketToolpath(tool_radius, extra_offset, stepover, from_center, use_zig_zag, zig_angle)