From 41c2ac70381ff89bb1ae54d2401a48234591947e Mon Sep 17 00:00:00 2001 From: Daniele Verducci Date: Tue, 8 Sep 2026 00:15:53 +0200 Subject: [PATCH] Label for characters box --- accessories/label_for_characters_box.scad | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 accessories/label_for_characters_box.scad diff --git a/accessories/label_for_characters_box.scad b/accessories/label_for_characters_box.scad new file mode 100644 index 0000000..e44e2ce --- /dev/null +++ b/accessories/label_for_characters_box.scad @@ -0,0 +1,18 @@ +use <../enclosure/box.scad> + +// A label to screw on a wooden box to keep all the characters + +difference() { + scale([0.6, 0.6, 0.02]) + main_body(); + + translate([-39, -6, -1]) + linear_extrude(height=2) + text("Ć’abula", font="URW Bookman", size=16); + + // Screw holes + translate([-46, -19, -0.5]) + cylinder(h=1, d1=2, d2=4); + translate([46, 19, -0.5]) + cylinder(h=1, d1=2, d2=4); +} \ No newline at end of file