Skip to content

Commit

Permalink
flatten the bottom edge so Chicago Steno is more printable
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfwood committed Jan 28, 2023
1 parent 0a9a7b2 commit ed0b8fe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions CS.scad
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ed0b8fe

Please sign in to comment.