chiark / gitweb /
nook-case: wip, tooth
[reprap-play.git] / nook-case.scad
1 // -*- C -*-
2
3 include <utils.scad>
4
5 nook_th = 12.41 + 0.50;
6 nook_w = 127.12 + 0.75;
7 nook_h = 123.44 + 21.88 + 21.05 + 0.75;
8
9 nook_cnr_rad = 10;
10
11 case_th = 2.5;
12 ledge_w = 4;
13 tape_th = 1.75;
14 tape_inside = 2.0;
15
16 gap = 0.5 * [1,1];
17
18 tape_w = 15;
19
20 test_pillar = 4;
21
22 engage_l0 = 10;
23 engage_l1 = 10;
24 engage_l2 = 3;
25
26 tooth_inward = gap[0] * 1.0;
27 tooth_x = nook_w * 1/6;
28 tooth_w = 15;
29
30 $test = false;
31
32 // calculated
33
34 tooth_height = nook_th;
35 ledge_h = case_th;
36 lid_th = case_th;
37 tooth_th = case_th;
38
39 spp0 = [0,0];
40 spp1 = spp0 + case_th * [-1,0];
41 spp9 = spp0 + ledge_h * [0,-1];
42 spp8 = spp9 + nook_th * [0,-1];
43 spp7 = spp8 + case_th * [-1,-1];
44
45 spp11y = spp1[1] - tape_th;
46 spp4y  = 0.5 * (spp0[1] + spp7[1]);
47 spp3y = spp4y + tape_inside/2;  spp5y = spp4y - tape_inside/2;
48 spp2y = spp3y + tape_th;        spp6y = spp5y - tape_th;
49
50 spp20 = spp8 + nook_cnr_rad * [1,0];
51 spp20x = spp20[0];
52
53 tppA = spp0 + gap;
54 tppB = spp1 + [0, gap[1]];
55 tppC = tppB + lid_th * [0,1];
56 tppD = [ spp20x, tppC[1] ];
57 tppE = [ spp20x, tppB[1] ];
58 tppF = tppA + ledge_w * [1,0];
59 tppG = tppF + ledge_h * [0,-1];
60 tppH = [ tppA[0], tppG[1] ];
61
62 tppJx = tppA[0] + tape_th;
63
64 tppK = [ tppC[0], tppG[1] ];
65 spp31 = tppK - [0, gap[1]];
66 spp30 = [ spp8[0], spp31[1] ];
67
68 nom_cnr = 0.5 * [nook_w, nook_h, 0] - nook_cnr_rad * [1,1,0];
69
70 etxa = nom_cnr[0] - engage_l2;
71 etxb = etxa - engage_l1;
72 etxc = -(nom_cnr[0] - engage_l2);
73
74 tppS = tppB + [-gap[0], 0];
75 tppP = [ tppS[0] - tooth_th, tppC[1] ];
76 tppQ = tppP + tooth_height * [0,-1] + tooth_inward * [1,0];
77 tppR = [ tppS[0] + tooth_inward, tppQ[1] ];
78
79 module RightSideMainProfile() {
80   rectfromto(spp7, spp0);
81   rectfromto(spp7, spp20);
82 }
83
84 module LeftSideMainProfile() {
85   rectfromto(spp7, spp30);
86   rectfromto(spp7, spp20);
87 }
88
89 module TopTapeCutout() {
90   polygon([ tppA,
91             tppA + [-40, 0],
92             tppG + [-40,-1],
93             [ tppJx, tppH[1]-1 ],
94             [ tppJx, tppC[1]+1 ],
95             [ tppA[0], tppC[1]+1 ]]);
96 }
97
98 module RightTopMainProfile() {
99   l = [ tppA, tppB, tppC, tppD, tppE, tppF, tppG, tppH ];
100   polygon(l);
101 }
102
103 module LeftTopMainProfile() {
104   l = [ tppC, tppD, tppE, tppF, tppG, tppK ];
105   polygon(l);
106 }
107
108 module SideTapeCutout1(y0,y1) {
109   rectfromto([ spp7[0]-1, y0 ],
110              [ spp8[0]+1, y1 ]);
111 }
112
113 module SideTapeCutout() {
114   SideTapeCutout1(spp6y, spp5y);
115   SideTapeCutout1(spp3y, spp2y);
116   SideTapeCutout1(spp3y, spp2y);
117   SideTapeCutout1(spp11y, spp1[1] + 1);
118 }
119
120 module ToothProfile(){
121   l = [ tppA, tppB, tppS, tppR, tppQ, tppP, tppC ];
122   polygon(l);
123 }
124
125 module Demo(){ ////toplevel
126   translate([0,0,-2]) LeftSideMainProfile(); 
127   translate([0,0,-2]) color("yellow") LeftTopMainProfile();
128   color("red") difference(){
129     LeftSideMainProfile();
130     SideTapeCutout();
131   }
132   translate([0,0,0]) color("purple") difference(){
133     LeftTopMainProfile();
134     TopTapeCutout();
135   }
136   translate([nook_cnr_rad*2 + 5, 0,0]) mirror([1,0,0]) {
137     color("red") RightSideMainProfile();
138     color("purple") RightTopMainProfile();
139     color("grey") translate([0,0,-2]) ToothProfile();
140   }
141   //%SideTapeCutout();
142 }
143
144 module FaceCore(z0,z1, extra_left, extra_right){
145   for (mx=[0,1]) mirror([mx,0,0]) {
146       for (my=[0,1]) mirror([0,my,0]) {
147           translate(-nom_cnr) {
148             rotate_extrude(angle=90, convexity=10)
149               translate(-[1,0,0] * nook_cnr_rad)
150               children(mx);
151           }
152         }
153       translate([nook_w/2, 0,0])
154         linextr_y_xz(-nom_cnr[1]-0.1, nom_cnr[1]+0.1)
155         children(1-mx);
156     }
157   for (my=[0,1]) mirror([0,my,0]) {
158       translate([0, -nook_h/2, 0]) {
159         linextr_x_yz(-nom_cnr[0]-0.1,    etxc + extra_left)  children(0);
160         linextr_x_yz(etxc - extra_right, etxb + extra_right) children(1);
161         linextr_x_yz(etxb - extra_left,  etxa + extra_left)  children(0);
162         linextr_x_yz(etxa - extra_right, nom_cnr[0]+0.1)     children(1);
163       }
164     }
165   if (!$test) {
166     linextr(z0,z1)
167       rectfromto(-nom_cnr, nom_cnr);
168   }
169 }
170
171 module Base(){ ////toplevel
172   FaceCore(0,0, 0.3, 0) {
173     LeftSideMainProfile();
174     RightSideMainProfile();
175   }
176 }
177
178 module Top(){ ////toplevel
179   FaceCore(0,0, -gap[0], gap[0] + 0.3) {
180     LeftTopMainProfile();
181     RightTopMainProfile();
182   }
183   translate([tooth_x, nook_h/2, 0])
184     linextr_x_yz(-tooth_w/2, +tooth_w/2)
185     mirror([1,0])
186     ToothProfile();
187 }
188
189 module TestExtrude(){
190   difference(){
191     linextr_y_xz(-test_pillar, tape_w+test_pillar) children(0);
192     linextr_y_xz(           0, tape_w            ) children(1);
193   }
194 }
195
196 module TestSide(){ ////toplevel
197   TestExtrude() { LeftSideMainProfile(); SideTapeCutout(); }
198 }
199
200 module TestTop(){ ////toplevel
201   TestExtrude() { LeftTopMainProfile(); TopTapeCutout(); }
202 }
203 module TestTopPrint(){ ////toplevel
204   rotate([180,0,0]) TestTop();
205 }