From e43db550cad7c9bb7f546dad902ba053457bc6c3 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 5 Jun 2013 23:06:14 +0100 Subject: [PATCH 1/1] crossbar-computer-led-mount: Tests --- crossbar-computer-led-mount.scad | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 crossbar-computer-led-mount.scad diff --git a/crossbar-computer-led-mount.scad b/crossbar-computer-led-mount.scad new file mode 100644 index 0000000..36dac88 --- /dev/null +++ b/crossbar-computer-led-mount.scad @@ -0,0 +1,26 @@ +// -*- C -*- + +led_dia = 5; +led_depth = 5; + +test_width = 15; +test_height = 12; + +thicks = [1,2,4,6]; + +module Tests(){ + for (thicki=[0:len(thicks)-1]) { + translate([thicki*test_width-0.1, 0, 0]) { + difference(){ + cube([test_width, + thicks[thicki] + led_depth, + test_height]); + %translate([test_width/2, -1, test_height/2]) + rotate([-90,0,0]) + cylinder(r=led_dia/2, h=led_depth+1); + } + } + } +} + +Tests(); -- 2.30.2