mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-03-16 03:16:26 +00:00
Merge pull request #132 from rsheldiii/v1/g20-spacebar-fix
V1: Fix g20 spacebar having closed bottom
This commit is contained in:
commit
edfc02e27b
2 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue