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>
17 lines
423 B
OpenSCAD
17 lines
423 B
OpenSCAD
// Test square
|
|
//
|
|
// Generate STL using OpenSCAD:
|
|
// openscad square.scad -o square.stl
|
|
|
|
square_width = 5;
|
|
square_size = 60;
|
|
square_height = 5;
|
|
|
|
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]);
|
|
}
|