summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven <steven.vasilogianis@gmail.com>2021-11-14 16:39:25 -0500
committerSteven <steven.vasilogianis@gmail.com>2021-11-14 16:39:25 -0500
commit02c626e951c4556c84a80f405c8a582fa816e43f (patch)
treed4a4cac45beb356554053f633fb035a42e656055
parente8b6466ddfdaadfb44ec550d584696509aea3077 (diff)
Lower minimum allowed cubby_depth
-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