mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2024-11-26 14:54:21 +00:00
fix spacebar() assuming sideways_cylindrical
This commit is contained in:
parent
9b52a91db9
commit
db30aa2066
@ -874,8 +874,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…
Reference in New Issue
Block a user