chiark / gitweb /
hole-repair-20191117: finished quality
[reprap-play.git] / hole-repair-20191117.scad
index 1c596cff25983d1794926f6a80a51b2091387f32..e2d7c7393c1905ef2d339a65cc91d933ed503b1c 100644 (file)
@@ -11,8 +11,8 @@ maj_r = 30 + nom_hole/2;
 
 postwall_th = 2;
 
-//$fa=1;
-//$fs=1;
+$fa=1;
+$fs=1;
 
 module Profile(r) {
   polygon([ [0,        0],
@@ -32,11 +32,18 @@ module Body(){
 
 module Post(){
   difference(){
-    cylinder(r= post_dia/2, h= post_height);
     translate([0,0,-1])
-      cylinder(r= post_dia/2 - postwall_th, h= post_height+2);
+      cylinder(r= post_dia/2, h= post_height+1);
+    translate([0,0,-2])
+      cylinder(r= post_dia/2 - postwall_th, h= post_height+3);
   }
 }
 
+module Cover(){
+  rotate([0,180,0]) Body();
+  Post();
+}
+
 //Body();
-Post();
+//Post();
+Cover();