docs: Minor update to square.scad

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2018-01-02 21:56:29 -05:00
parent 00ea3934ee
commit e4129a7e53
2 changed files with 31 additions and 31 deletions

View File

@@ -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() {