Added various plates

This commit is contained in:
2025-11-14 19:25:16 +01:00
parent b1e5c1e84b
commit cf6666cabc
35 changed files with 271 additions and 114 deletions

View File

@@ -0,0 +1,14 @@
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();