fix upside_down

rotate 180 degrees so the labels are correct
This commit is contained in:
Bob 2020-01-11 23:29:40 -05:00
parent c06b548201
commit cb7a301052
1 changed files with 2 additions and 1 deletions

View File

@ -141,7 +141,8 @@ module bump(depth=undef) {
// might not work great with fully sculpted profiles yet // might not work great with fully sculpted profiles yet
module upside_down() { module upside_down() {
// $top_tilt*2 because top_placement rotates by top_tilt for us // $top_tilt*2 because top_placement rotates by top_tilt for us
top_placement() rotate([180+$top_tilt*2,0,0]) { // first rotate 180 to get the keycaps to face the same direction
rotate([0,0,180]) top_placement() rotate([180+$top_tilt*2,0,0]) {
children(); children();
} }
} }