diff options
author | XANTRONIX Development | 2023-11-19 20:33:56 -0500 |
---|---|---|
committer | XANTRONIX Development | 2023-11-19 21:02:47 -0500 |
commit | 8a62f33c342a646247a9f8622800a598e69689e7 (patch) | |
tree | ee24d828db7e570bc234c8175bb10e08341d5f57 | |
parent | e6deebd764b1237e42efde45bd1b497db6361572 (diff) | |
download | xantronix-z32-8a62f33c342a646247a9f8622800a598e69689e7.tar.gz xantronix-z32-8a62f33c342a646247a9f8622800a598e69689e7.tar.bz2 xantronix-z32-8a62f33c342a646247a9f8622800a598e69689e7.zip |
Happy little epsilon
-rw-r--r-- | case/top.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/case/top.scad b/case/top.scad index 97f4d6f..5e3d5c1 100644 --- a/case/top.scad +++ b/case/top.scad @@ -41,8 +41,8 @@ module top_case(key_switch_sizes, pcb_screw_holes) { module accents() { for (y = [accent_y_bottom: accent_y_stride: case_length_bottom]) { /* Top */ - translate([-eps, y, wall_height - accent_depth]) - cube([case_width_bottom+2*eps, accent_width, accent_depth+eps], false); + translate([-eps, y - eps, wall_height - accent_depth]) + cube([case_width_bottom+2*eps, accent_width + 2*eps, accent_depth+eps], false); /* Right */ translate([case_width_bottom - accent_depth, y, -eps]) |