From 8f8ba2dad0ca7691ccbe7934c41bb59fa8833608 Mon Sep 17 00:00:00 2001 From: Kacper Donat Date: Sun, 23 Nov 2025 23:09:20 +0100 Subject: [PATCH] PartDesign: Bake in geometry transform after boolean This bakes in transform into geometry after boolean to ensure that regardless of parameters the result of boolean operation is the same. --- src/Mod/PartDesign/App/FeatureBoolean.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/PartDesign/App/FeatureBoolean.cpp b/src/Mod/PartDesign/App/FeatureBoolean.cpp index a6dec043a0..12ea7e413b 100644 --- a/src/Mod/PartDesign/App/FeatureBoolean.cpp +++ b/src/Mod/PartDesign/App/FeatureBoolean.cpp @@ -153,6 +153,8 @@ App::DocumentObjectExecReturn* Boolean::execute() } } + result.bakeInTransform(); + result = refineShapeIfActive(result); if (!isSingleSolidRuleSatisfied(result.getShape())) {