From: Ian Jackson Date: Sun, 8 Oct 2017 01:46:23 +0000 (+0100) Subject: poster-tube-lid: Cover X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=9a29fde7877bbedad8b6aee0ffe1c715b7d8f896 poster-tube-lid: Cover --- diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index eaa686d..97f1fbb 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -153,5 +153,23 @@ module ProfilesDemo(){ polygon(bayo_polygon); } +module Cover(){ + difference(){ + union(){ + rotate_extrude() + translate([main_dia/2, 0]) + MainProfile(); + translate([0,0, seal_thick]) + cylinder(h= top_thick, r = main_dia/2); + } + for (r=[0,180]) + rotate([0,0, r]) + translate([0,0, -side_height]) + BayonetCutout(); + } +} + //ProfilesDemo(); -BayonetCutout(); +//BayonetCutout(); +//MainProfile(); +Cover();