summaryrefslogtreecommitdiffstats
path: root/case
diff options
context:
space:
mode:
authorXANTRONIX Development2023-11-15 19:01:27 -0500
committerXANTRONIX Development2023-11-15 19:01:27 -0500
commitdd1733d69183ea2cc5d84e08ad8b8297ce86d372 (patch)
treee2cc2ee0011fbdf61bc9660b43f54109c749132e /case
parentf927eb055aa1437440d5e623bd0175375f6552ab (diff)
downloadxantronix-z32-dd1733d69183ea2cc5d84e08ad8b8297ce86d372.tar.gz
xantronix-z32-dd1733d69183ea2cc5d84e08ad8b8297ce86d372.tar.bz2
xantronix-z32-dd1733d69183ea2cc5d84e08ad8b8297ce86d372.zip
Bustin' feels good 8)
Diffstat (limited to 'case')
-rw-r--r--case/top.scad8
1 files changed, 5 insertions, 3 deletions
diff --git a/case/top.scad b/case/top.scad
index 2d92679..9f95d75 100644
--- a/case/top.scad
+++ b/case/top.scad
@@ -43,6 +43,8 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
vent_x_first = keyboard_x_offset + keyboard_width - vent_count * (vent_width + vent_width);
vent_y_offset = case_length_bottom - vent_length;
+ support_width = 2.0000;
+
module fascia() {
linear_extrude(wall_width)
difference() {
@@ -142,7 +144,7 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
/* Left */
cube([wall_width, case_length_bottom, wall_height - wall_width], false);
- support_x_interval = (keyboard_width + wall_width + 1.25) / 6;
+ support_x_interval = (keyboard_width + 2 * wall_width - support_width) / 6;
support_x_offset = keyboard_x_offset - wall_width;
/* Upper vertical supports */
@@ -164,12 +166,12 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
translate([support_x_offset + x,
upper_support_y_offset,
wall_height - wall_width])
- support([upper_support_length, keyboard_switch_height], 1.25);
+ support([upper_support_length, keyboard_switch_height], support_width);
translate([support_x_offset + x,
lower_support_y_offset,
wall_height - wall_width])
- support([lower_support_length, keyboard_switch_height], 1.25);
+ support([lower_support_length, keyboard_switch_height], support_width);
}
}