chiark / gitweb /
poster-tube-lid: braces in Cover
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 8 Oct 2017 01:53:25 +0000 (02:53 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 8 Oct 2017 01:53:25 +0000 (02:53 +0100)
poster-tube-lid.scad

index 97f1fbb3272d83a5ec5e7584c1b559d0344ec460..c5899d34afa7e6bb63c742405f8c0da1ef4eba48 100644 (file)
@@ -29,6 +29,9 @@ bayo_entry = bayo_behind/3;
 
 bayo_slice_size = 1;
 
+brace_hole_width = 1.0;
+brace_above_below = 0.5;
+
 // calculated
 
 bayo_entry_x = bayo_entry;
@@ -166,6 +169,13 @@ module Cover(){
       rotate([0,0, r])
        translate([0,0, -side_height])
        BayonetCutout();
+    for (r=[0 : 60 : 179]) {
+      rotate([0,0, r]) {
+       height = top_thick - brace_above_below*2;
+       translate([0,0, seal_thick + brace_above_below + height/2 ])
+       cube(center=true, [ main_dia, brace_hole_width, height ]);
+      }
+    }
   }
 }