chiark / gitweb /
Revert "sewing-table: FOR REVERT: shorten tongue/groove for round edge"
[reprap-play.git] / sewing-table.scad.m4
index c2ae19d6712084357c91af1b4b87850e16102fcc..5a6aec036ea8e4c6841387de5f815e4e600e37e6 100644 (file)
@@ -150,7 +150,7 @@ module InterlockLobePlan(negative) {
   }
 }
 
-module InterlockEdgePlan(negative, nlobes, length) {
+module InterlockEdgePlan(negative, nlobes, length, dosquare=true) {
   for (lobei = [ 0 : nlobes-1 ]) {
     lobex = (length - thehd[0]*2) * (lobei ? lobei / (nlobes-1) : 0);
     translate([lobex, 0, 0]) {
@@ -158,11 +158,13 @@ module InterlockEdgePlan(negative, nlobes, length) {
     }
   }
 
-  iadj = interlock_sq_adj;
-  slotshorter = negative ? 0 : interlock_fine_lenslop;
-  mirror([0, negative])
-    translate([slotshorter, iadj])
-    square([length - slotshorter*2, interlock_fine + iadj*2]);
+  if (dosquare) {
+    iadj = 0;
+    slotshorter = negative ? 0 : interlock_fine_lenslop;
+    mirror([0, negative])
+      translate([slotshorter, iadj])
+      square([length - slotshorter*2, interlock_fine + iadj*2]);
+  }
 }
 
 module InterlockEdge(left_cnr, right_cnr, negative=0, nlobes=2) {
@@ -173,7 +175,8 @@ module InterlockEdge(left_cnr, right_cnr, negative=0, nlobes=2) {
   z1 = -tile_th/2 - protr / interlock_fine_slope;
   z3 = -tile_th/2 + protr / interlock_fine_slope;
 
-  yprotr = negative ? -protr : protr;
+  negsign = negative ? -1 : +1;
+  yprotr = negsign * protr;
 
   INREFFRAME(left_cnr, right_cnr) {
     for (vsect = [ // zs0            zs1      ys0,            ys1
@@ -189,12 +192,12 @@ module InterlockEdge(left_cnr, right_cnr, negative=0, nlobes=2) {
       ysd = ys1-ys0;
       sl = ysd/zsd;
       m = [ [ 1,0,   0,    0 ],
-           [ 0,1, -sl, -ys0 ],
+           [ 0,1, -sl, -ys0 + negsign*interlock_sq_adj ],
            [ 0,0,   1,  zs0 ],
            [ 0,0,   0,    1 ] ];
       multmatrix(m)
        linear_extrude(height=zsd, convexity=10)
-       InterlockEdgePlan(negative, nlobes, length);
+       InterlockEdgePlan(negative, nlobes, length, !!ysd);
     }
   }
 }