From d2981fb09a42cc54d2c23e77446c3ff5711f7493 Mon Sep 17 00:00:00 2001 From: Russell Johnson <47639332+Russ4262@users.noreply.github.com> Date: Thu, 1 Oct 2020 22:51:33 -0500 Subject: [PATCH] Path: Remove FinalDepth limitation for internal profile operation Requested in forum at https://forum.freecadweb.org/viewtopic.php?f=15&t=50341 --- src/Mod/Path/PathScripts/PathProfile.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathProfile.py b/src/Mod/Path/PathScripts/PathProfile.py index dc5e17d611..da76f71dda 100644 --- a/src/Mod/Path/PathScripts/PathProfile.py +++ b/src/Mod/Path/PathScripts/PathProfile.py @@ -483,11 +483,6 @@ class ObjectProfile(PathAreaOp.ObjectOp): finalDep = obj.FinalDepth.Value custDepthparams = self.depthparams self._addDebugObject('Rotation_Indiv_Shp', shape) - if obj.Side == 'Inside': - if finalDep < shape.BoundBox.ZMin: - # Recalculate depthparams - finalDep = shape.BoundBox.ZMin - custDepthparams = self._customDepthParams(obj, strDep + 0.5, finalDep) if self.expandProfile: shapeEnv = self._getExpandedProfileEnvelope(obj, shape, False, obj.StartDepth.Value, finalDep)