From: Ian Jackson Date: Sun, 10 May 2020 14:44:30 +0000 (+0100) Subject: mic-table-clamp: wip, before redesign X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d890d41ad34c32f2c7c62c5ead91058a6992f0f2;p=reprap-play.git mic-table-clamp: wip, before redesign Signed-off-by: Ian Jackson --- diff --git a/mic-table-clamp.scad b/mic-table-clamp.scad index f145b3a..53de47b 100644 --- a/mic-table-clamp.scad +++ b/mic-table-clamp.scad @@ -12,8 +12,8 @@ positive_l = inch * 1/2.; stem_l = 7; stem_dia = 12; -//base_th = 3; -// base_dia = +base_th = 3; +base_dia = 60; module Base(){ translate([0,0,-0.1]) @@ -25,7 +25,8 @@ module Base(){ cylinder(r= stem_dia/2 * 1/(0.5 * sqrt(3)), h = stem_l + 1, $fn=6); -// translate([0,0, stem_l) + translate([0,0, stem_l]) + cylinder(r= base_dia/2, h= base_th); } }