From: Ian Jackson Date: Wed, 11 Feb 2015 21:36:07 +0000 (+0000) Subject: screw-recess-test: abolish blockxy (nfc) X-Git-Tag: filamentspool-v2-release~202 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=c6ab162269c63c9226c737ef5adc1cfd3a757e41 screw-recess-test: abolish blockxy (nfc) --- diff --git a/screw-recess-test.scad b/screw-recess-test.scad index 576c216..50bcd5a 100644 --- a/screw-recess-test.scad +++ b/screw-recess-test.scad @@ -29,13 +29,11 @@ module RecessedScrewCutout(shaftdia, recessdia, shaftlen, // pass recessdepth_arg=-1 for the default for flat heads recessdepth = RecessedScrewCutout_recessdepth(recessdia, recessdepth_arg); recesstopz = RecessedScrewCutout_totaldepth(recessdia, recessdepth_arg); - xblocky = shaftdia + 0.1; translate([0,0,-zbelow]) cylinder(r=shaftdia/2, h=shaftlen+zbelow, $fn=20); RecessScrewCutout_RecessCylinder(recessdia,zbelow, recessdepth); intersection(){ - translate([-recessdia*1.5, -xblocky/2, -zbelow]) - cube([recessdia*3, xblocky, recesstopz+2+zbelow]); + cube([recessdia + 1, shaftdia + 0.1, recesstopz*2 + 1], center=true); translate([0, -recessdia, recesstopz]) rotate([0,135,0]) cube([recessdia, recessdia*2, 10]); RecessScrewCutout_RecessCylinder(recessdia,zbelow, recesstopz+1);