X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=fire-blanket-wall-mushroom.scad;h=bdf5b3ecfa8eb47f3629040e02444184e20e59c5;hp=8391818cdc24407d139733310361690cc79a0f5d;hb=3dae49cee6c4c06c310031ddee6212cb85942c17;hpb=e65cec6194b37f7bc46218f0f956a59dd62065ea diff --git a/fire-blanket-wall-mushroom.scad b/fire-blanket-wall-mushroom.scad index 8391818..bdf5b3e 100644 --- a/fire-blanket-wall-mushroom.scad +++ b/fire-blanket-wall-mushroom.scad @@ -1,9 +1,11 @@ // -*- C -*- -screwrad = 4.3 / 2 + 0.30; -shaftrad = 7.5 / 2 - 0.30; +fudge=0.15; -diskrad = 12.0 / 2 - 0.25; +screwrad = 4.3 / 2 + fudge; +shaftrad = 7.5 / 2 - fudge; + +diskrad = 12.0 / 2 - fudge; csinkpart = 0.5; @@ -27,4 +29,12 @@ module SidePlan(){ [-screwrad, -totallen]]); } -SidePlan(); +module Bush(){ + rotate_extrude($fn=25, convexity=3){ + SidePlan(); + } +} + +//SidePlan(); +rotate([0,180,0]) + Bush();