Rev Author Line No. Line
3860 kaklik 1  
2 pedestal_height = 5; // designed for use the MLAB standard 12mm screws.
3 mount_hole = 3.5;
4 clear = 0.175;
5 nut_size = 6.6;
6  
7  
8 difference () {
9 cube([50.292,70.612,pedestal_height]);
10  
11 translate ([1, 1,2.5])
12 difference(){
13 cube([48.292,68.612,pedestal_height]);
14  
15 cube([8,8,pedestal_height]);
16  
17 translate ([48.292 - 8, 0, 0])
18 cube([8,8,pedestal_height]);
19  
20 translate ([48.292 - 8, 68.612 - 8, 0])
21 cube([8,8,pedestal_height]);
22  
23 translate ([0, 68.612 - 8, 0])
24 cube([8,8,pedestal_height]);
3861 kaklik 25  
26 //insulating wall
27 translate ([20, 0, 0])
28 cube([1,70,pedestal_height]);
29 translate ([22, 0, 0])
30 cube([1,70,pedestal_height]);
31  
3860 kaklik 32 }
33  
34 ////////////////////////////////////////
35  
36 // MLAB grid holes
37  
38 translate ([4.572, 4.572,0])
39 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
40 translate ([4.572, 4.572, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
41 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
42  
43 translate ([4.572 + 4*10.16, 4.572,0])
44 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
45 translate ([4.572 + 4*10.16, 4.572, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
46 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
47  
48  
49 translate ([4.572, 4.572 + 6*10.16, 0])
50 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
51 translate ([4.572, 4.572 + 6*10.16, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
52 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
53  
54 translate ([4.572 + 4*10.16, 4.572 + 6*10.16, 0])
55 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
56 translate ([4.572 + 4*10.16, 4.572 + 6*10.16, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
57 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
58  
59 }
60  
61