From 0034a4b83a6963d49e217191f95ea0d9061d7b85 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 14 Nov 2023 17:38:34 -0500 Subject: Fucky wucky! --- case/top.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/case/top.scad b/case/top.scad index 30fffe9..caee717 100644 --- a/case/top.scad +++ b/case/top.scad @@ -150,19 +150,19 @@ module top_case(key_switch_sizes, pcb_screw_holes) { module walls() { /* Upper */ translate([-wall_width, keyboard_length, 0]) - cube([keyboard_width + 2 * wall_width, wall_width, key_switch_height], false); + cube([keyboard_width + 2 * wall_width, wall_width, key_switch_height - wall_width], false); /* Right */ translate([keyboard_width, -wall_width, 0]) - cube([wall_width, keyboard_length + 2 * wall_width, key_switch_height], false); + cube([wall_width, keyboard_length + 2 * wall_width, key_switch_height - wall_width], false); /* Lower */ translate([-wall_width, -wall_width, 0]) - cube([keyboard_width + 2 * wall_width, wall_width, key_switch_height], false); + cube([keyboard_width + 2 * wall_width, wall_width, key_switch_height - wall_width], false); /* Left */ translate([-wall_width, -wall_width, 0]) - cube([wall_width, keyboard_length + 2 * wall_width, key_switch_height], false); + cube([wall_width, keyboard_length + 2 * wall_width, key_switch_height - wall_width], false); } module body() { -- cgit v1.2.3