From cb7a3010523c92fb0a9613d857147cf8cc25e85e Mon Sep 17 00:00:00 2001 From: Bob Date: Sat, 11 Jan 2020 23:29:40 -0500 Subject: [PATCH] fix upside_down rotate 180 degrees so the labels are correct --- src/key_transformations.scad | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/key_transformations.scad b/src/key_transformations.scad index e2da732..b03184a 100644 --- a/src/key_transformations.scad +++ b/src/key_transformations.scad @@ -141,7 +141,8 @@ module bump(depth=undef) { // might not work great with fully sculpted profiles yet module upside_down() { // $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(); } }