From 2b8a238f8a9df52cbf9cc4e7bca7b6f357fe8aea Mon Sep 17 00:00:00 2001 From: Bob Date: Thu, 24 Feb 2022 17:50:54 -0500 Subject: [PATCH] TODO.md --- README.md | 4 +--- customizer.scad | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f228560..60c6a17 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/customizer.scad b/customizer.scad index 5438c4d..8ffb4de 100644 --- a/customizer.scad +++ b/customizer.scad @@ -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"); } }