From 463f4ad1949c5ce63c507edb00b3f35a47e58a70 Mon Sep 17 00:00:00 2001 From: William Toohey Date: Thu, 14 Jul 2016 00:25:28 +1000 Subject: [PATCH] Improved USB ramp --- Hardware/Case/TataconCase.scad | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Hardware/Case/TataconCase.scad b/Hardware/Case/TataconCase.scad index 500af1b..0b3b3c7 100644 --- a/Hardware/Case/TataconCase.scad +++ b/Hardware/Case/TataconCase.scad @@ -209,8 +209,10 @@ module usb_clip() { rotate([0,-90,0]) linear_extrude(usb_width/2, center = true) polygon(points=[[board_clearance_bottom+usb_relative_z,0], - [0, helper_length], - [0, helper_length - helper_strength*2], + [board_clearance_bottom+usb_relative_z,fudge], + [0, helper_length+fudge], + [0, helper_length+fudge - helper_strength*2], + [board_clearance_bottom+usb_relative_z - helper_strength,fudge], [board_clearance_bottom+usb_relative_z - helper_strength, 0]]); }