chiark / gitweb /
sewing-table: PostSpacer: fix int slop
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 22 Jun 2017 23:40:02 +0000 (00:40 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 22 Jun 2017 23:40:02 +0000 (00:40 +0100)
sewing-table.scad.m4

index 2f9f46f4d7cfc174274b0e66aab1414260d2c812..b71e04110cc327b69d281f314d33d066402a0221 100644 (file)
@@ -714,7 +714,7 @@ module PostSpacer(){ ////toplevel
     cylinder(r= ply_hole_dia_real/2 - spacer_ext_slop,
             h= spacer_height);
     translate([0,0,-1])
-      cylinder(r= post_dia/2 - spacer_int_slop,
+      cylinder(r= post_dia/2 + spacer_int_slop,
               h= ply_th + 2);
   }
 }