1
0
Fork 0
mirror of https://github.com/rsheldiii/KeyV2.git synced 2025-03-16 03:16:26 +00:00

Merge pull request from rsheldiii/v1/g20-spacebar-fix

V1: Fix g20 spacebar having closed bottom
This commit is contained in:
Bob 2022-02-19 20:31:43 -05:00 committed by GitHub
commit edfc02e27b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -788,8 +788,8 @@ function add_rounding(p, radius)=[for(i=[0:len(p)-1])[p[i].x,p[i].y, radius]];
function unit_length(length) = unit * (length - 1) + 18.16;
module spacebar() {
$inverted_dish = true;
$dish_type = "sideways cylindrical";
$inverted_dish = $dish_type != "disable";
$dish_type = $dish_type != "disable" ? "sideways cylindrical" : "disable";
6_25u() stabilized(mm=50) children();
}

View file

@ -1,8 +1,8 @@
include <functions.scad>
module spacebar() {
$inverted_dish = true;
$dish_type = "sideways cylindrical";
$inverted_dish = $dish_type != "disable";
$dish_type = $dish_type != "disable" ? "sideways cylindrical" : "disable";
6_25u() stabilized(mm=50) children();
}