Files
3D/server_rack/scad/triple_ssd_mount.scad
2025-10-26 21:17:38 +01:00

34 lines
1.1 KiB
OpenSCAD

include <BOSL2/std.scad>
module walls() {
difference() {
union() {
translate([0,0,19]) cuboid([3,85,38], rounding=3, edges=[TOP+FRONT,TOP+BACK]);
for(i=[2:13:28]) translate([-1.5,0,i]) ycyl(l=85, d=3);
}
for(i=[7:13:33]) {
translate([0,-38.5,i]) xcyl(l=3, d=3.5);
translate([0,38.5,i]) xcyl(l=3, d=3.5);
}
}
}
module ssd_mount() {
difference() {
union() {
rect_tube(h=3, size=[85,85], wall=10, center=true);
translate([36.5,0,0]) walls();
translate([-36.5,0,0]) mirror([1,0,0]) walls();
rotate([0,0,41]) cuboid([250,15,3], rounding=5, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);
rotate([0,0,-41]) cuboid([250,15,3], rounding=5, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);
tube(od=172.5, id=147.5, l=3);
}
translate([60,52.5,0]) zcyl(l=10, d=4.5);
translate([60,-52.5,0]) zcyl(l=10, d=4.5);
translate([-60,52.5,0]) zcyl(l=10, d=4.5);
translate([-60,-52.5,0]) zcyl(l=10, d=4.5);
}
}
*ssd_mount();