This commit is contained in:
Bob 2022-02-24 17:50:54 -05:00
parent ed0c201894
commit 2b8a238f8a
2 changed files with 2 additions and 4 deletions

View File

@ -198,9 +198,7 @@ Prints from this library are still challenging, despite all efforts to the contr
That's it, if you have any questions feel free to open an issue or leave a comment on thingiverse!
## TODO:
* replace linear_extrude_shape_hull with skin_extrude_shape_hull or something, to enable concave extrusions
* replace current ISO enter shape with one that works for `skin()`
* generate dishes via math?
moved to [TODO doc](./TODO.md)
## Contributions welcome

View File

@ -4877,7 +4877,7 @@ module keytext(text, position, font_size, depth) {
woffset = (top_total_key_width()/3.5) * position[0];
hoffset = (top_total_key_height()/3.5) * -position[1];
translate([woffset, hoffset, -depth]){
color($tertiary_color) linear_extrude(height=$dish_depth + depth){
color($tertiary_color) linear_extrude(height=2){
text(text=text, font=$font, size=font_size, halign="center", valign="center");
}
}