18 lines
448 B
OpenSCAD
18 lines
448 B
OpenSCAD
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);
|
|
} |