Add badging to end product
This commit is contained in:
parent
f665bd6dbd
commit
5b7959ff80
1 changed files with 17 additions and 1 deletions
|
@ -219,6 +219,21 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module badge() {
|
||||||
|
module badge_text() {
|
||||||
|
text("XANTRONIX", font="Proxima Nova Semibold", size=2);
|
||||||
|
|
||||||
|
translate([16, 0, 0])
|
||||||
|
text("Z32", font="Proxima Nova Semibold", size=10);
|
||||||
|
}
|
||||||
|
|
||||||
|
translate([keyboard_x_offset,
|
||||||
|
keyboard_y_offset + keyboard_pcb_length + keyboard_switch_length + accent_width,
|
||||||
|
wall_height - accent_depth])
|
||||||
|
linear_extrude(accent_depth + eps)
|
||||||
|
badge_text();
|
||||||
|
}
|
||||||
|
|
||||||
module body() {
|
module body() {
|
||||||
translate([0, 0, wall_height - wall_width])
|
translate([0, 0, wall_height - wall_width])
|
||||||
fascia();
|
fascia();
|
||||||
|
@ -240,6 +255,7 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
|
||||||
|
|
||||||
difference() {
|
difference() {
|
||||||
body();
|
body();
|
||||||
|
badge();
|
||||||
accents();
|
accents();
|
||||||
vents();
|
vents();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue