Add back labels
This commit is contained in:
parent
aae522bdf2
commit
ce3b029aae
1 changed files with 23 additions and 0 deletions
|
@ -49,6 +49,7 @@ module backBox() {
|
||||||
}
|
}
|
||||||
backHoles();
|
backHoles();
|
||||||
backScrewoles();
|
backScrewoles();
|
||||||
|
backLabel();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,6 +76,28 @@ module frontLabel() {
|
||||||
corners(23, 92);
|
corners(23, 92);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module backLabel() {
|
||||||
|
color("green")
|
||||||
|
translate([$boxw / 2 - 6, $boxl - .5, $feeth + 7.5])
|
||||||
|
rotate([90, 0, 180])
|
||||||
|
union() {
|
||||||
|
translate([4,10.5,0])
|
||||||
|
linear_extrude(2) text("YUNoHost", size=5);
|
||||||
|
translate([50,10.5,0])
|
||||||
|
linear_extrude(2) text("yunohost.org", size=5);
|
||||||
|
translate([4,4,0])
|
||||||
|
linear_extrude(2) text("example", size=5);
|
||||||
|
translate([49,4,0])
|
||||||
|
linear_extrude(2) text("example.com", size=5);
|
||||||
|
translate([4,-2.5,0])
|
||||||
|
linear_extrude(2) text("example", size=5);
|
||||||
|
translate([49,-2.5,0])
|
||||||
|
linear_extrude(2) text("example.com", size=5);
|
||||||
|
}
|
||||||
|
translate([0, $boxl, $feeth + $boxh - 38.5])
|
||||||
|
corners(23, 92);
|
||||||
|
}
|
||||||
|
|
||||||
module frontScrewoles() {
|
module frontScrewoles() {
|
||||||
translate([0, 4.2, $feeth + $boxh - 25.3])
|
translate([0, 4.2, $feeth + $boxh - 25.3])
|
||||||
rotate([0, 90, 0])
|
rotate([0, 90, 0])
|
||||||
|
|
Loading…
Reference in a new issue