Files
phone-case/fillet.scad
Colin 3bf24c420c prefer $fs over $fn
$fn = 50 is extreme and *really* slows things down
2023-12-21 04:23:42 +00:00

12 lines
171 B
OpenSCAD

include <dimensions.scad>
$fs = 1;
minkowski() {
difference() {
cube([Length+0.2, Width+0.2, 0.2], true);
cube([Length, Width, 4], true);
}
sphere(d=3);
}