chiark / gitweb /
sewing-table: FOR REVERT: shorten tongue/groove for round edge
[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 interlock_dia = 10;
22 interlock_fine = 0.66;
23
24 interlock_fine_slope = 1.0;
25 interlock_fine_lenslop = 1.0;
26
27 demo_slop = 0.1;
28
29 // calculated
30
31 ply_edge_hole_dist = ply_edge_min + ply_hole_dia/2;
32
33 echo(str("HOLES IN PLY ctr dist from PLY edge = ", ply_edge_hole_dist));
34
35 hole_slop = (ply_hole_dia - post_dia)/2;
36 tile_hard_edge_hole_dist = ply_edge_hole_dist + hole_slop;
37
38 echo(str("HOLES IN PLY ctr dist from TILE HARD edge = ",
39          tile_hard_edge_hole_dist));
40
41 echo(str("HOLES IN PLY ctr dist from TILE ROUND edge = ",
42          tile_hard_edge_hole_dist + round_edge_rad));
43
44 thehd = [ tile_hard_edge_hole_dist, tile_hard_edge_hole_dist ];
45 thehd_tr = thehd;
46 thehd_tl = [ -thehd_tr[0], thehd_tr[1] ];
47 thehd_bl = -thehd_tr;
48 thehd_br = -thehd_tl;
49
50 interlock_rad = interlock_dia/2;
51 interlock_negative_rad = interlock_rad + 0.125;
52
53 interlock_sq_adj = 0.2; // arbitrary
54
55 module Post(){
56   mirror([0,0,1]) {
57     difference(){
58       cylinder(r= post_dia/2, h= tile_th + ply_th - post_shorter);
59       translate([0,0, tile_th]) {
60         cylinder(r= screw_big_dia/2, h= screw_big_len);
61         cylinder(r= screw_dia/2, h= ply_th, $fn=20);
62       }
63     }
64   }
65 }
66
67 module Posts(posts) {
68   for (p= posts) {
69     translate(concat(p, [0]))
70       Post();
71   }
72 }
73
74 module TileBase(botleft, topright){
75   size = topright - botleft;
76   botleft_post = botleft + thehd_tr;
77   topright_post = topright + thehd_bl;
78   difference(){
79     mirror([0,0,1])
80       translate(concat(botleft, [0]))
81       cube(concat(size, [tile_th]));
82     translate( concat(botleft_post, [-tile_th])
83                + 0.5 * [ post_dia, post_dia, 0 ] )
84       Commitid_BestCount_M( topright_post-botleft_post
85                             + [-post_dia,-post_dia]
86                             + [0, thehd[1]]);
87   }
88 }
89
90 m4_dnl  INREFFRAME(left_cnr, right_cnr, morevars) { body; }
91 m4_define(`INREFFRAME',`
92   length_vec = ($2) - ($1);
93   length = dist2d([0,0], length_vec);
94   length_uvec = length_vec / length;
95   ortho_uvec = [ -length_uvec[1], length_uvec[0] ];
96   m = [ [ length_uvec[0],  ortho_uvec[0], 0, ($1)[0], ],
97         [ length_uvec[1],  ortho_uvec[1], 0, ($1)[1], ],
98         [ 0,              0,              1,            0, ],
99         [ 0,              0,              0,            1, ] ];
100   $3
101   multmatrix(m)
102 ')
103
104 m4_dnl  INREFFRAME(left_cnr, right_cnr, morevars)
105 m4_dnl    INREFFRAME_EDGE { body; }
106 m4_define(`INREFFRAME_EDGE',`
107   translate([0,0, -round_edge_rad])
108 ')
109
110 module RoundEdge(left_cnr, right_cnr) {
111   INREFFRAME(left_cnr, right_cnr)
112     INREFFRAME_EDGE {
113     difference(){
114       rotate([0,90,0])
115         cylinder(r= round_edge_rad, h= length, $fn=50);
116       translate([-1, 0, -20])
117         cube([length+2, 20, 20]);
118     }
119   }
120 }
121
122 module RoundLeftCorner(this_cnr, right_cnr) {
123   INREFFRAME(this_cnr, right_cnr) INREFFRAME_EDGE {
124     difference(){
125       sphere(r= round_edge_rad, $fn=60);
126       translate([0,0, -20])
127         cube([20,20,20]);
128     }
129   }
130 }
131
132 module InterlockLobePlan(negative) {
133   r = negative ? interlock_negative_rad : interlock_rad;
134   ymir = negative ? 0 : 1;
135
136   dx = sqrt(3) * r;
137   $fn= 80;
138   translate([thehd[0], 0]){
139     mirror([0,ymir]){
140       circle(r=r);
141       difference(){
142         translate([-dx, -0.1])
143           square([ dx*2, r/2 + 0.1 ]);
144         for (xi = [-1, 1]) {
145           translate([ xi*dx, r ])
146             circle(r=r);
147         }
148       }
149     }
150   }
151 }
152
153 module InterlockEdgePlan(negative, nlobes, length, dosquare=true) {
154   for (lobei = [ 0 : nlobes-1 ]) {
155     lobex = (length - thehd[0]*2) * (lobei ? lobei / (nlobes-1) : 0);
156     translate([lobex, 0, 0]) {
157       InterlockLobePlan(negative);
158     }
159   }
160
161   if (dosquare) {
162     iadj = 0;
163     slotshorter = round_edge_rad + 0.1
164       + (negative ? 0 : interlock_fine_lenslop);
165     mirror([0, negative])
166       translate([slotshorter, iadj])
167       square([length - slotshorter*2, interlock_fine + iadj*2]);
168   }
169 }
170
171 module InterlockEdge(left_cnr, right_cnr, negative=0, nlobes=2) {
172   plusth = negative * 1.0;
173   protr = interlock_fine + interlock_sq_adj;
174
175   z2 = -tile_th/2;
176   z1 = -tile_th/2 - protr / interlock_fine_slope;
177   z3 = -tile_th/2 + protr / interlock_fine_slope;
178
179   negsign = negative ? -1 : +1;
180   yprotr = negsign * protr;
181
182   INREFFRAME(left_cnr, right_cnr) {
183     for (vsect = [ // zs0            zs1      ys0,            ys1
184                   [ -tile_th-plusth, plusth,  0,              0],
185                   [ z1,              z2,      0, yprotr],
186                   [ z2,              z3,      yprotr, 0],
187                   ]) {
188       zs0 = vsect[0];
189       zs1 = vsect[1];
190       zsd = zs1-zs0;
191       ys0 = vsect[2];
192       ys1 = vsect[3];
193       ysd = ys1-ys0;
194       sl = ysd/zsd;
195       m = [ [ 1,0,   0,    0 ],
196             [ 0,1, -sl, -ys0 + negsign*interlock_sq_adj ],
197             [ 0,0,   1,  zs0 ],
198             [ 0,0,   0,    1 ] ];
199       multmatrix(m)
200         linear_extrude(height=zsd, convexity=10)
201         InterlockEdgePlan(negative, nlobes, length, !!ysd);
202     }
203   }
204 }
205
206 function TestPiece_holes2corners(holes) =
207   [ holes[0] + thehd_bl,
208     holes[1] + thehd_br,
209     holes[1] + thehd_tr,
210     holes[0] + thehd_tl ];
211
212 module TestPiece1(){ ////toplevel
213   holes = [ [-100, 0],
214             [   0, 0]
215             ];
216   corners = TestPiece_holes2corners(holes);
217   difference(){
218     TileBase(corners[0], corners[2]);
219     InterlockEdge(corners[1], corners[2], 1, nlobes=1);
220   }
221   Posts(holes);
222   RoundEdge(corners[0], corners[1]);
223   RoundEdge(corners[3], corners[0]);
224   RoundLeftCorner(corners[0], corners[1]);
225 }
226
227 module TestPiece2(){ ////toplevel
228   holes = [ [   0, 0],
229             [  50, 0]
230             ];
231   corners = TestPiece_holes2corners(holes);
232   TileBase(corners[0], corners[2]);
233   Posts(holes);
234   RoundEdge(corners[0], corners[1]);
235   InterlockEdge(corners[3], corners[0], 0, nlobes=1);
236 }
237
238 module TestDemo(){ ////toplevel
239   translate([ -thehd[0], 0 ])
240     color("blue")
241     TestPiece1();
242   translate([ +thehd[0] + demo_slop, 0 ])
243     TestPiece2();
244 }
245   
246 function Rectangle_corners(c0, sz) =
247   [ c0 + [ 0,     0     ],
248     c0 + [ sz[0], 0     ],
249     c0 + [ sz[0], sz[1] ],
250     c0 + [ 0,     sz[1] ] ];
251
252 function Rectangle_corners2posts(c) =
253   [ c[0] + thehd_tr,
254     c[1] + thehd_tl,
255     c[2] + thehd_bl,
256     c[3] + thehd_br ];
257
258 module Tile02(){ ////toplevel
259   sz = [100,170];
260   c0 = -sz;
261   c = Rectangle_corners(c0, sz);
262   posts = Rectangle_corners2posts(c);
263   difference(){
264     TileBase(c[0], c[2]);
265     InterlockEdge(c[1], c[2], 1);
266   }
267   Posts(posts);
268   RoundEdge(c[0], c[1]);
269   RoundEdge(c[3], c[0]);
270   RoundLeftCorner(c[0], c[1]);
271   InterlockEdge(c[2], c[3], 0);
272 }
273
274 module Tile12(){ ////toplevel
275   sz = [100,250];
276   c0 = [-sz[0], 0];
277   c = Rectangle_corners(c0, sz);
278   posts = Rectangle_corners2posts(c);
279   difference(){
280     TileBase(c[0], c[2]);
281     InterlockEdge(c[0], c[1], 1);
282   }
283   Posts(posts);
284   RoundEdge(c[2], c[3]);
285   RoundEdge(c[3], c[0]);
286   RoundLeftCorner(c[2], c[3]);
287 }
288
289 module Demo(){ ////toplevel
290   translate(demo_slop*[-2,1]) color("blue") Tile12();
291   translate(demo_slop*[-2,0]) color("red")  Tile02();
292 }
293   
294 //TestPiece1();
295 //TestPiece2();
296 //Demo();