Label for characters box

This commit is contained in:
2026-09-08 00:15:53 +02:00
parent fea80a1b08
commit 41c2ac7038
+18
View File
@@ -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);
}