summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven <steven.vasilogianis@gmail.com>2021-06-06 13:54:22 -0400
committerSteven <steven.vasilogianis@gmail.com>2021-06-06 13:54:22 -0400
commit076da011f479dbc7b6506bae93ce662fe56de788 (patch)
tree8b63f6633e0f96845f4f60018ceb6683b39299b1
parentcd838166f7dd227f61c4c278ed8e83ad9bc3b956 (diff)
fix bug in divider height calculation
-rw-r--r--cubbies.scad2
1 files changed, 1 insertions, 1 deletions
diff --git a/cubbies.scad b/cubbies.scad
index 9644b38..d7aa4f2 100644
--- a/cubbies.scad
+++ b/cubbies.scad
@@ -136,7 +136,7 @@ module cubby_divider (depth, height) {
136 children(); 136 children();
137 137
138 module divider_wall () { 138 module divider_wall () {
139 strut_wall(depth, height - bracket_height() + ((bracket_height() - thickness) / 2)) children(); 139 strut_wall(depth, height - bracket_height()) children();
140 } 140 }
141 141
142 module tab_bracket () { 142 module tab_bracket () {