From: Harvie Date: Sun, 6 May 2012 15:45:01 +0000 (+0200) Subject: Motherboard IO shield X-Git-Url: https://git.harvie.cz/?a=commitdiff_plain;h=425b0a49e0890e1cb9aa549a3b3f6f77fbf081ad;p=mirrors%2FDesigns.git Motherboard IO shield --- diff --git a/openscad/motherboard_io_shield.scad b/openscad/motherboard_io_shield.scad new file mode 100644 index 0000000..2930b24 --- /dev/null +++ b/openscad/motherboard_io_shield.scad @@ -0,0 +1,11 @@ +module mobo_shield() { + union() { + cube([48,162,2]); + difference() { + translate([2,2,0]) cube([44,158,4]); + translate([4,4,1]) cube([40,154,6]); + } + } +} + +mobo_shield();