chiark / gitweb /
poster-tube-lid: tuning in Cura
[reprap-play.git] / poster-tube-lid.scad
index 47e6a848f755aca31d5984fc449157dbbf6e40dd..3c60f532ab71708e5b3099b198d7d0785db3509a 100644 (file)
@@ -29,6 +29,9 @@ bayo_entry = bayo_behind/3;
 
 bayo_slice_size = 1;
 
+brace_hole_width = 1.0;
+brace_above_below = 1.2;
+
 // calculated
 
 bayo_entry_x = bayo_entry;
@@ -119,7 +122,7 @@ module RotateProjectSlice(offset, slice_size, nom_rad, real_rad){
       translate([-offset, -10, 0])
        rotate([90,0,0])
        linear_extrude(height= nom_rad*2)
-       polygon(bayo_polygon);
+       children(0);
       translate([0,0, -25])
        cylinder(h=50, r= real_rad);
       translate([0,0, -25])
@@ -137,13 +140,15 @@ module RotateProject(x_min, x_max, slice_size, nom_rad, real_rad){
                    x_max + slice_size ]) i ];
   echo (offs);
   for (off=offs)
-    RotateProjectSlice(off, slice_size, nom_rad, real_rad);
+    RotateProjectSlice(off, slice_size, nom_rad, real_rad)
+    children(0);
 }
 
 module BayonetCutout(){
   RotateProject(bayo_c[0], bayo_i[0], bayo_slice_size,
                main_dia/2 + side_thick, 
-               main_dia/2 + rivet_tall);
+               main_dia/2 + rivet_tall)
+    polygon(bayo_polygon);
 }
 
 module ProfilesDemo(){
@@ -151,5 +156,30 @@ 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();
+    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 ]);
+      }
+    }
+  }
+}
+
 //ProfilesDemo();
-BayonetCutout();
+//BayonetCutout();
+//MainProfile();
+Cover();