From: Ian Jackson Date: Sun, 17 Nov 2019 22:09:05 +0000 (+0000) Subject: hole-repair-20191117: wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c93db1ea90f2383207258dcebd493b17e52857d7;p=reprap-play.git hole-repair-20191117: wip Signed-off-by: Ian Jackson --- diff --git a/hole-repair-20191117.scad b/hole-repair-20191117.scad index e4682a0..1c596cf 100644 --- a/hole-repair-20191117.scad +++ b/hole-repair-20191117.scad @@ -1,6 +1,7 @@ // -*- C -*- post_dia = 23.0; +post_height = 20; th = 4; @@ -8,6 +9,8 @@ nom_hole = 22; min_r = 15 + nom_hole/2; maj_r = 30 + nom_hole/2; +postwall_th = 2; + //$fa=1; //$fs=1; @@ -27,4 +30,13 @@ module Body(){ } } -Body(); +module Post(){ + difference(){ + cylinder(r= post_dia/2, h= post_height); + translate([0,0,-1]) + cylinder(r= post_dia/2 - postwall_th, h= post_height+2); + } +} + +//Body(); +Post();