mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-02-16 22:37:03 +00:00
fix blank() and filled()
not sure where but `depth_difference` for `shape()` is being left out. defaulting to 0 (which should be fine for a delta variable anyways) fixes the issue
This commit is contained in:
parent
f205359e27
commit
e87bd2ad49
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ yellow = [1, .6941, .2];
|
||||||
transparent_red = [1,0,0, 0.15];
|
transparent_red = [1,0,0, 0.15];
|
||||||
|
|
||||||
// key shape including dish. used as the ouside and inside shape in keytop(). allows for itself to be shrunk in depth and width / height
|
// key shape including dish. used as the ouside and inside shape in keytop(). allows for itself to be shrunk in depth and width / height
|
||||||
module shape(thickness_difference, depth_difference){
|
module shape(thickness_difference, depth_difference=0){
|
||||||
dished(depth_difference, $inverted_dish) {
|
dished(depth_difference, $inverted_dish) {
|
||||||
color(blue) shape_hull(thickness_difference, depth_difference, $inverted_dish ? 2 : 0);
|
color(blue) shape_hull(thickness_difference, depth_difference, $inverted_dish ? 2 : 0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue