chiark / gitweb /
sewing-table: FitTest_PairLink: wip
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 4 Jun 2017 11:41:41 +0000 (12:41 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 4 Jun 2017 11:41:41 +0000 (12:41 +0100)
sewing-table.scad.m4

index 3e75bc2bf5501d516e29502d8567071926103be4..e126ecc1be8020ec7d93db2603c707d8e75a3be4 100644 (file)
@@ -862,16 +862,33 @@ module FitTest_PairLink(cut=false){ ////toplevel
          }
        }
       }
+      // strap holes
+      for (rot=[0,180]) rotate(rot) {
+       translate([ straphole_x_max - strap[0]/2, 0,0 ])
+         cube(concat(strap,[20]), center=true);
+      }
     }
   }
 }
 
 module FitTest_PairDemo(){ ////toplevel
-  translate([-120,0,0]){
+  sh=[-100,-15,0];
+  translate(sh){
     FitTest_PairLink();
     %FitTest_FrontCurve();
     %FitTest_RearCurve();
   }
+  rotate([0,0,180]){
+    translate(sh){
+      difference(){
+       union(){
+         FitTest_FrontCurve();
+         FitTest_RearCurve();
+       }
+       #FitTest_PairLink(true);
+      }
+    }
+  }
 }
 
 module RoundCornerDemo_plat(cnr){