summaryrefslogtreecommitdiff
path: root/cubbies.scad
diff options
context:
space:
mode:
Diffstat (limited to 'cubbies.scad')
-rw-r--r--cubbies.scad2
1 files changed, 1 insertions, 1 deletions
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" ) {
50} 50}
51 51
52function assert_cubby_width() = 52function assert_cubby_width() =
53 let (min_width = (thickness * 2) + (strut_thickness * 2)) 53 let (min_width = strut_thickness + 1) // I'm not sure why I need the +1
54 assert(cubby_width >= min_width, 54 assert(cubby_width >= min_width,
55 str("Cubby width must be atleast ", min_width, "mm")); 55 str("Cubby width must be atleast ", min_width, "mm"));
56 56