diff options
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() { |