chiark / gitweb /
sewing-table: Interlock: tongue/groove wip (nfc)
[reprap-play.git] / sewing-table.scad.m4
index 630d48911b8a2f393c6bf5d848fdbc40d85ec53e..b09d59a53d0a615d63453e7c245081fb62c294a5 100644 (file)
@@ -174,13 +174,22 @@ module InterlockEdge(left_cnr, right_cnr, negative=0, nlobes=2) {
   z3 = -tile_th/2 + protr / interlock_fine_slope;
 
   INREFFRAME(left_cnr, right_cnr) {
-    for (vsect = [ // zstart         zend     ystart,      yend
+    for (vsect = [ // zs0            zs1      ys0,            ys1
                  [ -tile_th-plusth, plusth,  0,              0],
-                 //[ z1,              z2,      0, protr],
-                 //[ z2,              z3,      protr, 0],
+                 [ z1,              z2,      0, protr],
+                 [ z2,              z3,      protr, 0],
                  ]) {
-      translate([0, 0, vsect[0]])
-       linear_extrude(height=vsect[1]-vsect[0], convexity=10)
+      zs0 = vsect[0];
+      zs1 = vsect[1];
+      zsd = zs1-zs0;
+      ys0 = vsect[2];
+      ys1 = vsect[2];
+      ysd = ys1-ys0;
+      multmatrix([ [ 1,0,0,0 ],
+                  [ 0,1,0,0 ],
+                  [ 0,0,1,zs0 ],
+                  [ 0,0,0,1 ] ])
+       linear_extrude(height=zsd, convexity=10)
        InterlockEdgePlan(negative, nlobes, length);
     }
   }