From: Ian Jackson Date: Tue, 17 Oct 2017 22:33:06 +0000 (+0100) Subject: poster-tube-lid: StrapHoop: add to CoverTest1 properly X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=66c2f3cd835c20ea524185b2aea2629a9aa55087;p=reprap-play.git poster-tube-lid: StrapHoop: add to CoverTest1 properly --- diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index ee04e76..5d237f2 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -345,12 +345,19 @@ module CoverTest2(){ ////toplevel module CoverTest1(){ ////toplevel difference(){ CoverTest2(); - for (r= [ 40, 147 ]){ - rotate([0,0, r]){ - translate([0,0, -10]) { - cube([ main_dia*3, main_dia * .55, 18], center=true); + difference(){ + for (r= [ 40, 147 ]){ + rotate([0,0, r]){ + translate([0,0, -10]) { + cube([ main_dia*3, main_dia * .55, 18], center=true); + } } } + translate([ 50, 0, 0 ]) + cube([ 100, + strap_hoop_inside + strap_hoop_thick*2 + 1, + 100 ], + center=true); } } }