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]);
25 }
26  
27 ////////////////////////////////////////
28  
29 // MLAB grid holes
30  
31 translate ([4.572, 4.572,0])
32 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
33 translate ([4.572, 4.572, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
34 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
35  
36 translate ([4.572 + 4*10.16, 4.572,0])
37 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
38 translate ([4.572 + 4*10.16, 4.572, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
39 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
40  
41  
42 translate ([4.572, 4.572 + 6*10.16, 0])
43 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
44 translate ([4.572, 4.572 + 6*10.16, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
45 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
46  
47 translate ([4.572 + 4*10.16, 4.572 + 6*10.16, 0])
48 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
49 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 )
50 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
51  
52 }
53  
54