docs: Add a notch to the default square.stl test object

Place a small notch on one side of the square.  The notch provides
interesting information on the extruder performance, and it makes it
easier to compare with previous prints of the object.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2017-10-02 23:32:04 -04:00
parent 381304aa6f
commit 5c982c90f3
2 changed files with 136 additions and 22 deletions

View File

@@ -11,4 +11,6 @@ difference() {
cube([square_size, square_size, square_height]);
translate([square_width, square_width, -1])
cube([square_size-2*square_width, square_size-2*square_width, square_height+2]);
translate([-.5, square_size/2 - 4, -1])
cube([1, 2, square_height+2]);
}