chiark / gitweb /
wardrobe-hook: tuning prototype
[reprap-play.git] / wardrobe-hook.scad
index 1f13834396102d26c66e726c128b648abbcc9814..c04496dcec32414fffe448d38c8d8a037fe7ec2e 100644 (file)
@@ -15,8 +15,8 @@ module FArcSegment(xc,yc,inrad,outrad,alpha,delta) {
   translate([xc,yc]) {
     intersection() {
       difference() {
-       circle(r=outrad);
-       circle(r=inrad);
+       circle(r=outrad, $fn=70);
+       circle(r=inrad, $fn=70);
       }
       rotate(alpha) scale(outrad*2) {
        FArcSegment_mask(delta);
@@ -25,8 +25,9 @@ module FArcSegment(xc,yc,inrad,outrad,alpha,delta) {
   }
 }
 
-tubeheight = 30;
-tubewidth = 15;
+tubeslop = 0.5;
+tubeheight = 30 + tubeslop;
+tubewidth = 15 + tubeslop;
 mainthick = 4;
 
 clipthick = 2;