From ed0b8fe44f793f27cd745d4f655c377af93abb7a Mon Sep 17 00:00:00 2001 From: wolfwood Date: Fri, 27 Jan 2023 20:13:36 -0600 Subject: [PATCH] flatten the bottom edge so Chicago Steno is more printable --- CS.scad | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CS.scad b/CS.scad index 74c8da2..57b8b4c 100644 --- a/CS.scad +++ b/CS.scad @@ -13,8 +13,14 @@ module CS(type="R3") { } module printable(other=false) { - rotate([0,0,other ? -45 : 135]) - rotate([0,(other ? 1 : -1)*45,0]) children(); + difference(){ + rotate([0,0,other ? -45 : 135]) + rotate([0,(other ? 1 : -1)*45,0]) children(); + + // nip off the edge so the keycap sticks better to the print bed + h=5; + translate([0,0,-h/2 - 5.6]) cube([40,40,h], center=true); + } } index = false;