From f23ab2637cc79ffe2c9d939c5d9a858e5419a8d5 Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Sat, 27 Apr 2024 22:47:37 -0400 Subject: [PATCH] Fix dividers with thick walls Dividers would previously not go all the way to the top of the box, because the box inner outline subtraced twice the wall thickness from the z, even though z is special in that we don't need to consider the lid's thickness --- hingebox_code.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hingebox_code.scad b/hingebox_code.scad index 5dcedd8..a144678 100644 --- a/hingebox_code.scad +++ b/hingebox_code.scad @@ -607,7 +607,7 @@ module hingedbox_half( bd, topflag=false ) { top_d = [dx-wt, dy-wt, wt]; // inserts - ins_d=[ dx-wt2, dy-wt2, lz-wt2]; + ins_d=[ dx-wt2, dy-wt2, lz-wt]; // screw towers screw_id_bottom = (screw_id_bottom !=false)? screw_id_bottom : (screw_id*0.80);