chiark / gitweb /
c8757a583f3f632ff5a8fcec335e3027728a7ad4
[reprap-play.git] / sewing-table.scad.m4
1 // -*- C -*-
2
3 include <funcs.scad>
4 include <commitid.scad>
5
6 ply_th = 18;
7 ply_hole_dia = 15;
8 ply_edge_min = 10;
9
10 tile_th = 3;
11 post_dia = 8;
12
13 post_shorter = 1;
14
15 screw_dia = 2.2;
16 screw_big_dia = 3.6;
17 screw_big_len = 4.0;
18
19 round_edge_rad = 2.0;
20
21 round_cnr_rad = 10;
22
23 interlock_dia = 10;
24 interlock_fine = 0.66;
25
26 interlock_fine_slope = 1.0;
27 interlock_fine_lenslop = 1.0;
28
29 demo_slop = 0.1;
30
31 // cutout
32
33 machine_rear_to_front = 85;
34
35 machine_rear_profile = [
36                         [ -  0,  -0.00 ],
37                         [ -  2,  -0.10 ],
38                         [ -  4,  -0.20 ],
39                         [ -  5,  -0.30 ],
40                         [ -  6,  -0.40 ],
41                         [ -  7,  -0.50 ],
42                         [ -  8,  -0.75 ],
43                         [ - 10,  -1.50 ],
44                         [ - 12,  -2.25 ],
45                         [ - 14,  -3.25 ],
46                         [ - 16,  -4.25 ],
47                         [ - 18,  -5.75 ],
48                         [ - 20,  -8.00 ]
49                         ];
50
51 machine_front_profile =  [
52                           [  128,  -3.70,  ],
53                           [  124,  -2.90,  ],
54                           [  120,  -2.45,  ],
55                           [  116,  -2.10,  ],
56                           [  112,  -1.80,  ],
57                           [  108,  -1.55,  ],
58                           [  104,  -1.25,  ],
59                           [  100,  -1.00,  ],
60                           [   96,  -0.80,  ],
61                           [   92,  -0.65,  ],
62                           [   88,  -0.55,  ],
63                           [   84,  -0.50,  ]
64                           ];
65
66 cutout_l_end_y_front_slop = 0.5;
67 cutout_l_end_y_rear_slop = 0.5;
68 cutout_l_end_x_slop = 0.25;
69
70 cutout_l_end_x = 22;
71 cutout_l_end_y = machine_rear_to_front;
72 cutout_l_end_curve = 1;
73 cutout_l_end_y_total = cutout_l_end_y
74   + cutout_l_end_y_front_slop + cutout_l_end_y_rear_slop;
75
76 tile02_tr = [-250, 0];
77 tile01_tr = [  0, 0];
78
79 cutout_tile01_y = 170 - 147 + cutout_l_end_y_front_slop;
80 cutout_tile11_x = cutout_l_end_x + cutout_l_end_curve;
81 cutout_tile11_y = cutout_l_end_y_total - cutout_tile01_y;
82
83 // front and rear curves
84
85 rearedge_len = 170;
86
87 rearcurve_strt_len = 52;
88
89 rearcurve_z_slop = 0.75;
90
91 rearcurve_avoid_y = 35;
92
93 rearcurve_double_inrad = 26.10 + 8.04;
94
95 reartablet_z = 2.54;
96 reartablet_x = 5 + 1;
97 reartablet_y = 5;
98
99 frontcurve_side_skew = 3.5 / 72;
100 frontcurve_avoid_y = 70;
101 frontcurve_z_slop = 0.75;
102
103 // calculated
104
105 TEST = false;
106
107 ply_edge_hole_dist = ply_edge_min + ply_hole_dia/2;
108
109 echo(str("HOLES IN PLY ctr dist from PLY edge = ", ply_edge_hole_dist));
110
111 hole_slop = (ply_hole_dia - post_dia)/2;
112 tile_hard_edge_hole_dist = ply_edge_hole_dist + hole_slop;
113
114 echo(str("HOLES IN PLY ctr dist from TILE HARD edge = ",
115          tile_hard_edge_hole_dist));
116
117 echo(str("HOLES IN PLY ctr dist from TILE ROUND edge = ",
118          tile_hard_edge_hole_dist + round_edge_rad));
119
120 thehd = [ tile_hard_edge_hole_dist, tile_hard_edge_hole_dist ];
121 thehd_tr = thehd;
122 thehd_tl = [ -thehd_tr[0], thehd_tr[1] ];
123 thehd_bl = -thehd_tr;
124 thehd_br = -thehd_tl;
125
126 interlock_rad = interlock_dia/2;
127 interlock_negative_rad = interlock_rad + 0.125;
128
129 interlock_sq_adj = 0.2; // arbitrary
130
131 first_front = machine_front_profile[len(machine_front_profile)-1];
132
133 m4_define(`POST_TCROSSSZ',
134           `2*( tile_hard_edge_hole_dist - test_edge + 1 )')
135
136 module Post(){
137   mirror([0,0,1]) {
138     difference(){
139       cylinder(r= post_dia/2, h= tile_th + ply_th - post_shorter);
140       translate([0,0, tile_th]) {
141         cylinder(r= screw_big_dia/2, h= screw_big_len);
142         cylinder(r= screw_dia/2, h= ply_th, $fn=20);
143       }
144     }
145     if (TEST) {
146       translate([0,0, tile_th/2]) {
147         cube([post_dia,      POST_TCROSSSZ, tile_th], center=true);
148         cube([POST_TCROSSSZ, post_dia,      tile_th], center=true);
149       }
150     }
151   }
152 }
153
154 module Posts(posts) {
155   for (p= posts) {
156     translate(concat(p, [0]))
157       Post();
158   }
159 }
160
161 module TileBase(botleft, topright){
162   size = topright - botleft;
163   botleft_post = botleft + thehd_tr;
164   topright_post = topright + thehd_bl;
165   difference(){
166     mirror([0,0,1])
167       translate(concat(botleft, [0]))
168       cube(concat(size, [tile_th]));
169     if (!TEST) {
170       cidsz = topright_post-botleft_post
171         + [-post_dia,-post_dia]
172         + [0, thehd[1]];
173       cidszr = [ min(cidsz[0],50), min(cidsz[1],50) ];
174       echo("CID",cidsz,cidszr);
175       translate( concat(botleft_post, [ -tile_th ])
176                  + 0.5 * [ post_dia, post_dia, 0 ]
177                  + 0.5 * concat( cidsz - cidszr, [ 0 ]) )
178         Commitid_BestCount_M(cidszr);
179     }
180     if (TEST) {
181       crossoff = tile_hard_edge_hole_dist + POST_TCROSSSZ/2;
182       cidsz = [ thehd[0], size[1] - 2*crossoff ];
183       cidszr = [ cidsz[0], min(cidsz[1], 50) ];
184       translate( concat(botleft + [0, crossoff] + (cidsz-cidszr)/2, [0]) )
185         Commitid_BestCount(cidszr);
186       difference(){
187         mirror([0,0,1]) {
188           translate(concat(botleft + [test_edge,test_edge], [test_tile_th]))
189             cube(concat(size - [test_edge,test_edge]*2, [tile_th]));
190           translate(concat(botleft_post, [-1]))
191             cube(concat(topright_post-botleft_post, [tile_th+2]));
192         }
193         minkowski(){
194           Machine();
195           cube(max(test_edge, tile_hard_edge_hole_dist)*2, center=true);
196         }
197       }
198     }
199   }
200 }
201
202 m4_dnl  INREFFRAME(left_cnr, right_cnr, morevars) { body; }
203 m4_define(`INREFFRAME',`
204   length_vec = ($2) - ($1);
205   length = dist2d([0,0], length_vec);
206   length_uvec = length_vec / length;
207   ortho_uvec = [ -length_uvec[1], length_uvec[0] ];
208   m = [ [ length_uvec[0],  ortho_uvec[0], 0, ($1)[0], ],
209         [ length_uvec[1],  ortho_uvec[1], 0, ($1)[1], ],
210         [ 0,              0,              1,            0, ],
211         [ 0,              0,              0,            1, ] ];
212   $3
213   multmatrix(m)
214 ')
215
216 m4_dnl  INREFFRAME(left_cnr, right_cnr, morevars)
217 m4_dnl    INREFFRAME_EDGE { body; }
218 m4_define(`INREFFRAME_EDGE',`
219   translate([0,0, -round_edge_rad])
220 ')
221
222 module RoundEdge(left_cnr, right_cnr) {
223   INREFFRAME(left_cnr, right_cnr)
224     INREFFRAME_EDGE {
225     difference(){
226       rotate([0,90,0])
227         cylinder(r= round_edge_rad, h= length, $fn=50);
228       translate([-1, 0, -20])
229         cube([length+2, 20, 20]);
230     }
231   }
232 }
233
234 module RoundCornerCut(ci) {
235   // ci should be [this_cnr, right_cnr]
236   // where right_cnr is to the right (ie, anticlockwise)
237   this_cnr = ci[0];
238   right_cnr = ci[1];
239   offr= round_cnr_rad - round_edge_rad;
240   INREFFRAME(this_cnr, right_cnr) INREFFRAME_EDGE {
241     difference(){
242       cube(offr*2 - 0.1, center=true);
243       translate([offr, offr, 0])
244         cylinder(center=true, h=20, r= offr);
245     }
246   }
247 }
248
249 module RoundCornerAdd(ci) {
250   this_cnr = ci[0];
251   right_cnr = ci[1];
252   bigr = round_cnr_rad - round_edge_rad;
253   INREFFRAME(this_cnr, right_cnr) INREFFRAME_EDGE {
254     intersection(){
255       cube(bigr*2 + 0.1, center=true);
256       translate([bigr, bigr, 0])
257         rotate_extrude(convexity=10, $fn=50)
258         translate([bigr, 0])
259         difference(){
260           circle(r= round_edge_rad, $fn=50);
261           mirror([1,1])
262             square([20,20]);
263         }
264     }
265   }
266 }
267
268 module InterlockLobePlan(negative) {
269   r = negative ? interlock_negative_rad : interlock_rad;
270   ymir = negative ? 0 : 1;
271
272   dx = sqrt(3) * r;
273   $fn= 80;
274   translate([thehd[0], 0]){
275     mirror([0,ymir]){
276       circle(r=r);
277       difference(){
278         translate([-dx, -0.1])
279           square([ dx*2, r/2 + 0.1 ]);
280         for (xi = [-1, 1]) {
281           translate([ xi*dx, r ])
282             circle(r=r);
283         }
284       }
285     }
286   }
287 }
288
289 module InterlockEdgePlan(negative, nlobes, length, dosquare=true) {
290   for (lobei = [ 0 : nlobes-1 ]) {
291     lobex = (length - thehd[0]*2) * (lobei ? lobei / (nlobes-1) : 0);
292     translate([lobex, 0, 0]) {
293       InterlockLobePlan(negative);
294     }
295   }
296
297   if (dosquare) {
298     iadj = 0;
299     slotshorter = negative ? -0.1 : interlock_fine_lenslop;
300     mirror([0, negative])
301       translate([slotshorter, iadj])
302       square([length - slotshorter*2, interlock_fine + iadj*2]);
303   }
304 }
305
306 module InterlockEdge(left_cnr, right_cnr, negative=0, nlobes=2) {
307   plusth = negative * 1.0;
308   protr = interlock_fine + interlock_sq_adj;
309
310   z2 = -tile_th/2;
311   z1 = -tile_th/2 - protr / interlock_fine_slope;
312   z3 = -tile_th/2 + protr / interlock_fine_slope;
313
314   negsign = negative ? -1 : +1;
315   yprotr = negsign * protr;
316
317   INREFFRAME(left_cnr, right_cnr) {
318     for (vsect = [ // zs0            zs1      ys0,            ys1
319                   [ -tile_th-plusth, plusth,  0,              0],
320                   [ z1,              z2,      0, yprotr],
321                   [ z2,              z3,      yprotr, 0],
322                   ]) {
323       zs0 = vsect[0];
324       zs1 = vsect[1];
325       zsd = zs1-zs0;
326       ys0 = vsect[2];
327       ys1 = vsect[3];
328       ysd = ys1-ys0;
329       sl = ysd/zsd;
330       m = [ [ 1,0,   0,    0 ],
331             [ 0,1, -sl, -ys0 + negsign*interlock_sq_adj ],
332             [ 0,0,   1,  zs0 ],
333             [ 0,0,   0,    1 ] ];
334       multmatrix(m)
335         linear_extrude(height=zsd, convexity=10)
336         InterlockEdgePlan(negative, nlobes, length, !!ysd);
337     }
338   }
339 }
340
341 function TestPiece_holes2corners(holes) =
342   [ holes[0] + thehd_bl,
343     holes[1] + thehd_br,
344     holes[1] + thehd_tr,
345     holes[0] + thehd_tl ];
346
347 module TestPiece1(){ ////toplevel
348   holes = [ [-100, 0],
349             [   0, 0]
350             ];
351   corners = TestPiece_holes2corners(holes);
352   rcs = [corners[0], corners[1]];
353   difference(){
354     union(){
355       TileBase(corners[0], corners[2]);
356       Posts(holes);
357       RoundEdge(corners[0], corners[1]);
358       RoundEdge(corners[3], corners[0]);
359     }
360     InterlockEdge(corners[1], corners[2], 1, nlobes=1);
361     RoundCornerCut(rcs);
362   }
363   RoundCornerAdd(rcs);
364 }
365
366 module TestPiece2(){ ////toplevel
367   holes = [ [   0, 0],
368             [  50, 0]
369             ];
370   corners = TestPiece_holes2corners(holes);
371   TileBase(corners[0], corners[2]);
372   Posts(holes);
373   RoundEdge(corners[0], corners[1]);
374   InterlockEdge(corners[3], corners[0], 0, nlobes=1);
375 }
376
377 module TestDemo(){ ////toplevel
378   translate([ -thehd[0], 0 ])
379     color("blue")
380     TestPiece1();
381   translate([ +thehd[0] + demo_slop, 0 ])
382     TestPiece2();
383 }
384
385 module Machine_Arm(){
386   ysz = cutout_l_end_y_total;
387   // assume the round end is arc of a circle
388   chordlen = dist2d([0,0], [ cutout_l_end_y, cutout_l_end_curve ]);
389   endrad = cutout_l_end_y / cutout_l_end_curve * chordlen;
390   
391   translate([0,0,-30]) linear_extrude(height=60) {
392     translate(tile01_tr + [0, (-cutout_tile01_y + cutout_tile11_y)/2]) {
393       intersection(){
394         translate([-100, -ysz/2])
395           square([400, ysz]);
396         translate([ endrad - cutout_tile11_x - cutout_l_end_x_slop, 0 ])
397           circle(r=endrad, $fa=0.01,$fd=5);
398       }
399     }
400   }
401 }
402
403 module Machine_Profile(){
404   first_rear = machine_rear_profile[0];
405   below_point = 0.5 * ( first_rear + first_front ) + [ 0, -10 ];
406   pol = concat( machine_rear_profile,
407                 [ below_point ],
408                 machine_front_profile);
409   skew_angle = atan2( first_front[1] - first_rear[1],
410                       first_front[0] - first_rear[0] );
411   echo(below_point, pol, skew_angle);
412   hull(){
413     for (z=[0,-40]) {
414       translate([0,z]) {
415         //scale([1,5])
416         rotate([0,0, -skew_angle ]){
417           //translate( - first_front )
418           polygon(pol);
419         }
420       }
421     }
422   }
423 }
424
425 module Machine_NewRearProfile(){
426   // figures copied out of xfig edit boxes
427   // best not to edit the posbox size if poss - just move it
428   posbox = 10 * ([7.2333,-14.1267] - [-16.2289,40.0289]); // box, Green
429   sideline = -10 * ([-6.2400,13.5600] - [-2.4467,28.2556]); // line, Blue
430   scaleline = 10 * dist2d([-1.1911,-20.4800], [-11.2600,4.0578]); // Green2
431   scaleline_mm = 12+5+10+5+3;
432   sh = -[abs(posbox[0]), abs(posbox[1])];
433   rot = atan2(-sideline[0], sideline[1]);
434   sc = scaleline_mm / scaleline;
435   echo("SH",sh,rot,sc);
436   scale(sc) rotate(rot) translate(sh){
437     import("sewing-table-rear-profile.dxf", convexity=10); // spline, Pink3
438   }
439 }
440
441 module Machine_NewRearCurve(){
442   slant = atan2(4,210-10);
443   echo("SL",slant);
444   rotate([slant,0,0]){
445     translate([ rearcurve_double_inrad, 0, 10 ]){
446       rotate([180,0,0]) rotate([0,0,90]) linear_extrude(height=30){
447         hull(){
448           Machine_NewRearProfile();
449           translate([0,-100]) Machine_NewRearProfile();
450         }
451       }
452     }
453     rotate([0,90,0]) rotate([90,0,0]) {
454       intersection(){
455         rotate_extrude(convexity=10, $fn=64)
456           rotate(90)
457           translate([ 0, -rearcurve_double_inrad ])
458           Machine_NewRearProfile();
459         translate([0,0,-500])
460           cube([500,500,1000]);
461       }
462     }
463     translate([1,0,-rearcurve_double_inrad])
464       rotate([0,-90,0]) rotate([0,0,-90])
465       linear_extrude(height= rearcurve_strt_len + 1)
466       Machine_NewRearProfile();
467   }
468 }
469
470 module Machine_RearProfile(){ ////toplevel
471   intersection(){
472     Machine_Profile();
473     translate([ -200 + machine_rear_to_front/2, -100 ]) {
474       square([200,200]);
475     }
476   }
477 }
478
479 module Machine_FrontProfile(){
480   intersection(){
481     Machine_Profile();
482     translate([ machine_rear_to_front/2, -100 ]) {
483       square([200,200]);
484     }
485   }
486 }
487
488 module Machine_Curves(){ ////toplevel
489   translate([ tile01_tr[0] - cutout_l_end_x + rearedge_len,
490               cutout_tile11_y,
491               0 ]){
492     //%cube([20,20,20]);
493     translate([ -reartablet_x,
494                 -1,
495                 -reartablet_z])
496       mirror([0,0,1])
497       cube([ reartablet_x+1,
498              reartablet_y+1,
499              20 ]);
500   }
501   translate([ tile01_tr[0] - cutout_l_end_x + rearedge_len,
502               cutout_tile11_y,
503               frontcurve_z_slop ]){
504     translate([ 0, -first_front[0] , 0 ])
505       multmatrix([[1, -frontcurve_side_skew, 0, 0],
506                   [0,  1,   0, 0],
507                   [0,  0,   1, 0],
508                   [0,  0,   0, 1]])
509       translate([ 0, first_front[0] , 0 ])
510       mirror([1,0,0]){
511       rotate([0,-90,0])rotate([0,0,-90]){
512         linear_extrude(height= 200)
513           Machine_FrontProfile();
514       }
515     }
516     translate([ rearcurve_strt_len,
517                 0,
518                 rearcurve_z_slop ]){
519       translate([ 1,
520                   0,
521                   0
522                   ]){
523         rotate([0,-90,0])rotate([0,0,-90]){
524           linear_extrude(height= rearcurve_strt_len + 1)
525           Machine_RearProfile();
526         }
527       }
528       translate([ 0,
529                   0,
530                   rearcurve_double_inrad ]) {
531         intersection(){
532           rotate([90,0,0]){
533             rotate_extrude(convexity=10, $fn=32) {
534               rotate([0,0,90]) translate([ 0,
535                           -rearcurve_double_inrad ]) {
536                 Machine_RearProfile();
537               }
538             }
539           }
540           mirror([0,0,1])
541             translate([0,-75,0]) cube([150,150,150]);
542         }
543       }
544     }
545   }
546 }
547
548 module Machine(){ ////toplevel
549   Machine_Arm();
550   Machine_Curves();
551 }
552
553 function Rectangle_corners(c0, sz) =
554   // returns the corners of a rectangle from c0 to c0+sz
555   // if sz is positive, the corners are anticlockwise starting with c0
556   [ c0 + [ 0,     0     ],
557     c0 + [ sz[0], 0     ],
558     c0 + [ sz[0], sz[1] ],
559     c0 + [ 0,     sz[1] ] ];
560
561 function Rectangle_corners2posts(c) =
562   [ c[0] + thehd_tr,
563     c[1] + thehd_tl,
564     c[2] + thehd_bl,
565     c[3] + thehd_br ];
566
567 module Rectangle_TileBase(c) { TileBase(c[0], c[2]); }
568
569 function Posts_interpolate_one(c0,c1) = [c0, (c0+c1)/2, c1];
570
571 m4_dnl   R_EDGE(c,ix)
572 m4_dnl        c is from Rectangle_corners and
573 m4_dnl        ix is a corner number
574 m4_dnl    expands to two comma-separated corners:
575 m4_dnl    that denoted by ix, and the next one anticlockwise
576 m4_define(`R_EDGE',`$1[$2],$1[(($2)+1)%4]')
577
578 module FitTest(){ ////toplevel
579   sz = [280,180];
580   c0 = [-50,-80];
581   c = Rectangle_corners(c0, sz);
582   brace = [7,7,9];
583   difference(){
584     union(){
585       Rectangle_TileBase(c);
586       translate(concat(c0, [-brace[2] + 0.1])){
587         difference(){
588           cube(concat(sz,[brace[2]]) - [5,0,0]);
589           translate(brace + [0,0, -25])
590             cube(concat(sz, [50]) - brace*2 + [10,0,0]);
591         }
592       }
593       RoundEdge(R_EDGE(c,1));
594     }
595     Machine();
596   }
597 }
598
599 module Tile02(){ ////toplevel
600   sz = [100,170];
601   c0 = tile02_tr + -sz;
602   c = Rectangle_corners(c0, sz);
603   posts = Rectangle_corners2posts(c);
604   rcs = [R_EDGE(c,0)];
605   difference(){
606     union(){
607       Rectangle_TileBase(c);
608       Posts(posts);
609       RoundEdge(R_EDGE(c,0));
610       RoundEdge(R_EDGE(c,3));
611       InterlockEdge(R_EDGE(c,2), 0);
612     }
613     InterlockEdge(R_EDGE(c,1), 1);
614     RoundCornerCut(rcs);
615   }
616   RoundCornerAdd(rcs);
617 }
618
619 module Tile12(){ ////toplevel
620   sz = [100,250];
621   c0 = tile02_tr + [-sz[0], 0];
622   c = Rectangle_corners(c0, sz);
623   posts = Rectangle_corners2posts(c);
624   rcs = [R_EDGE(c,3)];
625   difference(){
626     union(){
627       Rectangle_TileBase(c);
628       Posts(posts);
629       RoundEdge(R_EDGE(c,2));
630       RoundEdge(R_EDGE(c,3));
631     }
632     InterlockEdge(R_EDGE(c,0), 1);
633     InterlockEdge(R_EDGE(c,1), 1);
634     RoundCornerCut(rcs);
635   }
636   RoundCornerAdd(rcs);
637 }
638
639 tile_01_11_cnr = tile01_tr + [-cutout_tile11_x, 0];
640 tile_11_10_cnr = tile01_tr + [0, cutout_tile11_y];
641 tile_01_00_cnr = tile01_tr - [0, cutout_tile01_y];
642
643 module Tile11(){ ////toplevel
644   sz = [250,250];
645   c0 = tile01_tr + [-sz[0],0];
646   c = Rectangle_corners(c0, sz);
647   cnr_posts = Rectangle_corners2posts(c);
648   posts = concat(
649                  Posts_interpolate_one(cnr_posts[0],
650                                        cnr_posts[1] - [cutout_tile11_x, 0]),
651                  [ cnr_posts[1] + [0, cutout_tile11_y],
652                    cnr_posts[2],
653                    cnr_posts[3]
654                    ]);
655   difference(){
656     union(){
657       Rectangle_TileBase(c);
658       Posts(posts);
659       RoundEdge(R_EDGE(c,2));
660       InterlockEdge(R_EDGE(c,3));
661     }
662     InterlockEdge(c[0], tile_01_11_cnr, 1);
663     InterlockEdge(tile_11_10_cnr, c[2], 1);
664     Machine();
665   }
666 }    
667
668 module Tile01(){ ////toplevel
669   sz = [250,170];
670   c0 = tile01_tr + -sz;
671   c = Rectangle_corners(c0, sz);
672   cnr_posts = Rectangle_corners2posts(c);
673   posts = concat(
674                  Posts_interpolate_one(R_EDGE(cnr_posts,0)),
675                  [ cnr_posts[2] + [0, -cutout_tile01_y] ],
676                  Posts_interpolate_one(cnr_posts[2] - [cutout_tile11_x, 0],
677                                        cnr_posts[3])
678                  );
679   difference(){
680     union(){
681       Rectangle_TileBase(c);
682       Posts(posts);
683       RoundEdge(R_EDGE(c,0));
684       InterlockEdge(tile_01_11_cnr, c[3]);
685       InterlockEdge(R_EDGE(c,3));
686     }
687     InterlockEdge(c[1], tile_01_00_cnr, 1);
688     Machine();
689   }
690 }    
691
692 module Tile10(){ ////toplevel
693   sz = [250,250];
694   c0 = tile01_tr + [0,0];
695   c = Rectangle_corners(c0, sz);
696   cnr_posts = Rectangle_corners2posts(c);
697   cty = cutout_tile11_y;
698   rcy = cty + rearcurve_avoid_y;
699   posts = [ cnr_posts[0] + [ 0,                             cty ],
700             cnr_posts[1] + [ -sz[0] + rearedge_len - cutout_l_end_x, cty ],
701             cnr_posts[1] + [ 0,                             rcy ],
702             cnr_posts[2],
703             cnr_posts[3] ];
704   rcs = [R_EDGE(c,2)];
705   difference(){
706     union(){
707       Rectangle_TileBase(c);
708       Posts(posts);
709       RoundEdge(R_EDGE(c,1));
710       RoundEdge(R_EDGE(c,2));
711       InterlockEdge(c[3], tile_11_10_cnr);
712     }
713     RoundCornerCut(rcs);
714     Machine();
715   }
716   RoundCornerAdd(rcs);
717 }
718
719 module Tile00(){ ////toplevel
720   sz = [250,170];
721   c0 = tile01_tr + [0,-sz[1]];
722   c = Rectangle_corners(c0, sz);
723   cnr_posts = Rectangle_corners2posts(c);
724   cty = cutout_tile01_y;
725   rcy = cty + frontcurve_avoid_y;
726   posts = [ cnr_posts[0],
727             cnr_posts[1],
728             cnr_posts[2] + [ 0,                             -rcy ],
729             cnr_posts[2] + [ -sz[0] + rearedge_len - cutout_l_end_x, -cty ],
730             cnr_posts[3] + [ 0,                             -cty ]
731             ];
732   rcs = [R_EDGE(c,1)];
733   difference(){
734     union(){
735       Rectangle_TileBase(c);
736       Posts(posts);
737       RoundEdge(R_EDGE(c,0));
738       RoundEdge(R_EDGE(c,1));
739       InterlockEdge(tile_01_00_cnr, c[0]);
740     }
741     RoundCornerCut(rcs);
742     Machine();
743   }
744   RoundCornerAdd(rcs);
745 }
746
747 module Demo(){ ////toplevel
748   translate(demo_slop*[-2,1]) color("blue") Tile12();
749   translate(demo_slop*[-2,0]) color("red")  Tile02();
750   translate(demo_slop*[-2,1]) color("orange") Tile11();
751   translate(demo_slop*[-2,0]) color("purple") Tile01();
752   translate(demo_slop*[-3,1]) color("blue")   Tile10();
753   translate(demo_slop*[-3,0]) color("red")    Tile00();
754   %Machine();
755 }
756   
757 //TestPiece1();
758 //TestPiece2();
759 //Demo();
760
761 //Machine_Profile();
762 //Machine_NewRearProfile();
763 //Machine_NewRearCurve();