aboutsummaryrefslogtreecommitdiffstats
path: root/docs/prints/square.scad
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-01-02 21:56:29 -0500
committerKevin O'Connor <kevin@koconnor.net>2018-01-02 21:56:29 -0500
commite4129a7e53cc859ace39bec69408ee687071f6d0 (patch)
tree571a2a98f4b09724d3bde29c3a955bcccb0f97d4 /docs/prints/square.scad
parent00ea3934ee0426342bca8c51ef32c6de5b46dcb4 (diff)
downloadkutter-e4129a7e53cc859ace39bec69408ee687071f6d0.tar.gz
kutter-e4129a7e53cc859ace39bec69408ee687071f6d0.tar.xz
kutter-e4129a7e53cc859ace39bec69408ee687071f6d0.zip
docs: Minor update to square.scad
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/prints/square.scad')
-rw-r--r--docs/prints/square.scad6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/prints/square.scad b/docs/prints/square.scad
index 9416cf44..1c16e30c 100644
--- a/docs/prints/square.scad
+++ b/docs/prints/square.scad
@@ -19,9 +19,9 @@ module hollow_square() {
module notch() {
CUT = 0.01;
depth = .5;
- width = 2;
- translate([-depth, -width/2, -CUT])
- cube([depth*2, width, square_height + 2*CUT]);
+ width = 1;
+ translate([-depth, -width, -CUT])
+ cube([2*depth, 2*width, square_height + 2*CUT]);
}
module square_with_notches() {