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:
Bob 2020-02-25 12:04:05 -05:00
parent f205359e27
commit e87bd2ad49
1 changed files with 1 additions and 1 deletions

View File

@ -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);
} }