From fb05335057dd47e7aab16e016666323fee9ec04b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 10 May 2020 17:28:34 +0100 Subject: [PATCH] mic-table-clamp: fixes from v2 Signed-off-by: Ian Jackson --- mic-table-clamp.scad | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mic-table-clamp.scad b/mic-table-clamp.scad index 77c3fc4..2f5b737 100644 --- a/mic-table-clamp.scad +++ b/mic-table-clamp.scad @@ -31,7 +31,8 @@ module Base(){ } thread_nom = 8; -thread_act = thread_nom + 0.375; +thread_pitch = 1.25; +thread_act = thread_nom + 0.250; wingnut_th = 5; wingnut_wall = 4; @@ -71,7 +72,8 @@ module Wingnut(){ translate([0,0, wingnut_th]) rotate([180,0,0]) translate([0,0,-0.01]) - metric_thread(diameter=thread_act, leadin=3, internal=true, + metric_thread(diameter=thread_act, pitch=thread_pitch, + leadin=3, internal=true, test=$test, length=wingnut_th+3); mirror([0,0,1]) linear_extrude(height=5) -- 2.30.2