From 02c626e951c4556c84a80f405c8a582fa816e43f Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 14 Nov 2021 16:39:25 -0500 Subject: Lower minimum allowed cubby_depth --- cubbies.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubbies.scad b/cubbies.scad index 7a78b71..4d4be83 100644 --- a/cubbies.scad +++ b/cubbies.scad @@ -50,7 +50,7 @@ if ( part == "both" ) { } function assert_cubby_width() = - let (min_width = (thickness * 2) + (strut_thickness * 2)) + let (min_width = strut_thickness + 1) // I'm not sure why I need the +1 assert(cubby_width >= min_width, str("Cubby width must be atleast ", min_width, "mm")); -- cgit v1.2.3