Merge pull request #11673 from bgbsww/bgbsww-patch-20

Tweak section tolerance to make base layer of paths work again
This commit is contained in:
sliptonic
2023-12-11 11:12:31 -06:00
committed by GitHub

View File

@@ -223,7 +223,7 @@ class ObjectOp(PathOp.ObjectOp):
area.add(baseobject)
areaParams = self.areaOpAreaParams(obj, isHole)
areaParams["SectionTolerance"] = 1e-07
areaParams["SectionTolerance"] = FreeCAD.Base.Precision.confusion() * 10 # basically 1e-06
heights = [i for i in self.depthparams]
Path.Log.debug("depths: {}".format(heights))