From 1a473ed4e61790287f5629d76e8fd63bfbce4818 Mon Sep 17 00:00:00 2001 From: Donald Curtis Date: Mon, 8 Aug 2016 19:38:07 -0700 Subject: [PATCH] Consider hand separation when placing cable screws When increasing the hand_separation screw holes near the USB hole were getting farther apart but the cut for the usb hole is fixed. As the hands separate the screw holes need to be negatively offset. --- case/openscad/atreus_case.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/case/openscad/atreus_case.scad b/case/openscad/atreus_case.scad index 9fcb011..5af4adf 100644 --- a/case/openscad/atreus_case.scad +++ b/case/openscad/atreus_case.scad @@ -222,7 +222,7 @@ module right_screw_holes(hole_radius) { } /* add the screw hole near the cable hole */ - translate([washer_radius - tmp[0], + translate([washer_radius - tmp[0] - 0.5*hand_separation, back_screw_hole_offset]) { rotate_half() { add_hand_separation() { -- 2.39.2