summaryrefslogtreecommitdiffstats
path: root/case
diff options
context:
space:
mode:
authorXANTRONIX Development2023-11-14 20:13:10 -0500
committerXANTRONIX Development2023-11-14 20:13:10 -0500
commitf779b234b7ae9ad2c5879b955a934401eee4ecac (patch)
treef3f830a41e3668e39493c6e1a24df199c56ab21d /case
parent6063df9199d7b36f24e4e93a6c42c1a8d84b9fa0 (diff)
downloadxantronix-z32-f779b234b7ae9ad2c5879b955a934401eee4ecac.tar.gz
xantronix-z32-f779b234b7ae9ad2c5879b955a934401eee4ecac.tar.bz2
xantronix-z32-f779b234b7ae9ad2c5879b955a934401eee4ecac.zip
Reasonable
Diffstat (limited to 'case')
-rw-r--r--case/top.scad6
1 files changed, 3 insertions, 3 deletions
diff --git a/case/top.scad b/case/top.scad
index f316704..df879ce 100644
--- a/case/top.scad
+++ b/case/top.scad
@@ -107,14 +107,14 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
/* Upper */
translate([0, case_length_bottom - wall_width, 0])
- cube([case_width_bottom, wall_width, wall_height], false);
+ cube([case_width_bottom, wall_width, wall_height - wall_width], false);
/* Right */
translate([case_width_bottom - wall_width, 0, 0])
- cube([wall_width, case_length_bottom, wall_height], false);
+ cube([wall_width, case_length_bottom, wall_height - wall_width], false);
/* Lower */
- cube([case_width_bottom, wall_width, wall_height], false);
+ cube([case_width_bottom, wall_width, wall_height - wall_width], false);
/* Left */
cube([wall_width, case_length_bottom, wall_height - wall_width], false);