chiark / gitweb /
hole-repair-20191117: post joins properly
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 17 Nov 2019 22:09:45 +0000 (22:09 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 17 Nov 2019 22:09:45 +0000 (22:09 +0000)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
hole-repair-20191117.scad

index 1c596cff25983d1794926f6a80a51b2091387f32..92c8739f6c882bf89950789f660983512265fd7c 100644 (file)
@@ -32,11 +32,16 @@ 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(){
+  
+}
+
 //Body();
 Post();