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

@@ -1,20 +1,14 @@
fragments = 36;
d=3.96;
h=3;
include <BOSL2/std.scad>
module pcb() {
color("green") {
difference(){
cube(size = [170,170,h], center = false);
// mini-itx holes
translate([6.35,6.35+22.86,0])
cylinder(5, d/2, d/2, $fn = fragments, center=false);
translate([6.35,6.35+154.94,0])
cylinder(5, d/2, d/2, $fn = fragments, center=false);
translate([6.35+157.48,6.35,0])
cylinder(5, d/2, d/2, $fn = fragments, center=false);
translate([6.35+157.48,6.35+154.94,0])
cylinder(5, d/2, d/2, $fn = fragments, center=false);
}
color("green", alpha=.5) difference() {
cuboid([170,170,1.6], rounding=3, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);
// mini-itx holes
translate([-78.74,74.84,5]) zcyl(l=20, d=2.7);
translate([-78.74,-80.1,5]) zcyl(l=20, d=2.7);
translate([78.74,-80.1,5]) zcyl(l=20, d=2.7);
translate([78.74,51.98,5]) zcyl(l=20, d=2.7);
}
}
}
*pcb();