From 0f78e8e9ef4afcb7864b8a3274b99127c45ff06b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 28 Feb 2015 12:51:56 +0000 Subject: [PATCH] screw-recess-test: tweaks --- screw-recess-test.scad | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/screw-recess-test.scad b/screw-recess-test.scad index 5762a26..5db4a56 100644 --- a/screw-recess-test.scad +++ b/screw-recess-test.scad @@ -36,17 +36,17 @@ module RecessedScrewCutout(shaftdia, recessdia, shaftlen, // nom. shaft // shaft slop -screw_info_M2 = [2, 1.5]; -screw_info_M3 = [3, 1.5]; -screw_info_M4 = [4, 1.2]; +screw_info_M2 = [2, 1.2]; +screw_info_M3 = [3, 1.2]; +screw_info_M4 = [4, 1.1]; screw_info_M5 = [5, 1.0]; -screw_info_M6 = [6, 0.9]; +screw_info_M6 = [6, 1.2]; function screw_shaft_dia_nom(info) = info[0]; function screw_shaft_dia_use(info) = info[0] + info[1]; -function screw_recess_dia_use(info) = info[0] * 2.5; -function screw_recess_depth(info) = info[0] * .65; -function screw_recess_depth_allen(info) = info[0] * 1.20; +function screw_recess_dia_use(info) = info[0] * 2.50 + 1.0; +function screw_recess_depth(info) = info[0] * 1.00 + 0.50; +function screw_recess_depth_allen(info) = info[0] * 1.55 + 0.50; function RecessedScrewCutoutStandard_totaldepth(info) = RecessedScrewCutout_totaldepth(screw_recess_dia_use(info), -- 2.30.2