From 9a29fde7877bbedad8b6aee0ffe1c715b7d8f896 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 8 Oct 2017 02:46:23 +0100 Subject: [PATCH] poster-tube-lid: Cover --- poster-tube-lid.scad | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) 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(); -- 2.30.2