From e2281f9b6d07baf1e11a03e0e9e7ab75147c6049 Mon Sep 17 00:00:00 2001 From: Richard Betel Date: Fri, 3 Nov 2023 14:13:12 -0400 Subject: [PATCH] Add files via upload The most basic form of a Mini-ITX PC motherboard. The grey cube is the IO cut-out . The exact placement of the PCIe slot is missing but it would be inline with the 2 mountpoints on the left of the board. --- vitamins/mini-ITX.scad | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vitamins/mini-ITX.scad diff --git a/vitamins/mini-ITX.scad b/vitamins/mini-ITX.scad new file mode 100644 index 00000000..ae8cbc32 --- /dev/null +++ b/vitamins/mini-ITX.scad @@ -0,0 +1,8 @@ +difference() { + translate([-10.16, 6.35-170, 0])cube([170,170,1.58]); // The datum is the C mount point. + translate([0,0,-5])cylinder(d=3.81, h=10); // Mount hole C holes are 0.15in + translate([157.48,-22.86,-5])cylinder(d=3.81, h=10); // Mount hole F + translate([0,-154.94,-5])cylinder(d=3.81, h=10); // Mount hole H + translate([157.48,-154.94,-5])cylinder(d=3.81, h=10); // Mount hole J +}; +color("grey")translate([7.52,10.16,7.3-9.53])cube([159,1,44.7]); // IO cutout \ No newline at end of file