Files
3D/server_rack/scad/nano_itx_board.scad
2025-11-14 19:25:16 +01:00

14 lines
431 B
OpenSCAD

include <BOSL2/std.scad>
module pcb() {
color("green", alpha=.5) difference() {
cuboid([120,120,1.6], rounding=3, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);
// nano-itx holes
translate([-56.4,-41.9,5]) zcyl(l=20, d=2.7);
translate([-56.4,56.4,5]) zcyl(l=20, d=2.7);
translate([56.4,56.4,5]) zcyl(l=20, d=2.7);
translate([56.4,-56.4,5]) zcyl(l=20, d=2.7);
}
}
*pcb();