summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven <steven.vasilogianis@gmail.com>2021-06-17 14:30:56 -0400
committerSteven <steven.vasilogianis@gmail.com>2021-06-17 14:30:56 -0400
commit4b977f97fdb65f3b7fba39386ead877b0b8a307b (patch)
tree5f7e2a4beb76bc876f3b28f140a2893340a30a64
parenta464df7fb0d2de6cda0bf8af82d9811afbbe8730 (diff)
fix an omitted paranthesis
-rw-r--r--cubbies.scad2
1 files changed, 1 insertions, 1 deletions
diff --git a/cubbies.scad b/cubbies.scad
index 57544b9..d8f26ae 100644
--- a/cubbies.scad
+++ b/cubbies.scad
@@ -156,7 +156,7 @@ module cubby_divider (depth, height) {
156 difference() { 156 difference() {
157 cuboid([screw_tab_width, screw_tab_thickness,screw_tab_height], 157 cuboid([screw_tab_width, screw_tab_thickness,screw_tab_height],
158 anchor=LEFT+TOP); 158 anchor=LEFT+TOP);
159 right(screw_tab_width * 2 / 3)) zrot(90) yrot(90) { 159 right(screw_tab_width * (2 / 3)) zrot(90) yrot(90) {
160 right(screw_tab_height * (1 / 3)) #cyl(l=15, r=2, anchor=RIGHT); 160 right(screw_tab_height * (1 / 3)) #cyl(l=15, r=2, anchor=RIGHT);
161 right(screw_tab_height * (2 / 3)) #cyl(l=15, r=2, anchor=LEFT); 161 right(screw_tab_height * (2 / 3)) #cyl(l=15, r=2, anchor=LEFT);
162 } 162 }