diff options
-rw-r--r-- | case/case.scad | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/case/case.scad b/case/case.scad index 688d601..9759f82 100644 --- a/case/case.scad +++ b/case/case.scad @@ -148,16 +148,16 @@ module keyboard_base_plate(pcb_dimensions, switch_z_range, screw_holes) { [thickness, wall_length, wall_height + thickness - corner_radius]); /* Upper right wall corner */ - wall_corner([thickness + pcb_clearance_edge + pcb_width - corner_radius, - thickness + pcb_clearance_edge + pcb_length - corner_radius, + wall_corner([pcb_clearance_edge + thickness + pcb_width - corner_radius, + pcb_clearance_edge + thickness + pcb_length - corner_radius, -thickness + corner_radius], [0, 0, 0], corner_radius, wall_height + thickness - corner_radius); /* Lower right wall corner */ - wall_corner([ thickness + pcb_clearance_edge + pcb_width - corner_radius, - 0 - thickness - pcb_clearance_edge + corner_radius, + wall_corner([ pcb_clearance_edge + thickness + pcb_width - corner_radius, + -pcb_clearance_edge - thickness + corner_radius, -thickness + corner_radius], [0, 0, 270], corner_radius, @@ -190,7 +190,7 @@ module keyboard_base_plate(pcb_dimensions, switch_z_range, screw_holes) { /* Upper edge */ round_edge([-pcb_clearance_edge - thickness + corner_radius, pcb_clearance_edge + thickness + pcb_length - corner_radius, - -thickness + corner_radius], + -thickness + corner_radius], [0, 90, 0], wall_width); @@ -236,7 +236,7 @@ module keyboard_base_plate(pcb_dimensions, switch_z_range, screw_holes) { /* Upper left corner */ round_corner([-pcb_clearance_edge - thickness + corner_radius, pcb_clearance_edge + thickness + pcb_length - corner_radius, - -thickness + corner_radius], + -thickness + corner_radius], [0, 90, 90]); /* Screw holes */ |