diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-01-02 21:56:29 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-01-02 21:56:29 -0500 |
commit | e4129a7e53cc859ace39bec69408ee687071f6d0 (patch) | |
tree | 571a2a98f4b09724d3bde29c3a955bcccb0f97d4 /docs/prints/square.scad | |
parent | 00ea3934ee0426342bca8c51ef32c6de5b46dcb4 (diff) | |
download | kutter-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.scad | 6 |
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() { |