From f52543063a6817dcf9c90d623f5930cab6056b94 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 3 Jul 2012 00:33:47 +0100 Subject: [PATCH] light-bracket: wip --- light-bracket.scad | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 light-bracket.scad diff --git a/light-bracket.scad b/light-bracket.scad new file mode 100644 index 0000000..167ce9f --- /dev/null +++ b/light-bracket.scad @@ -0,0 +1,14 @@ +remote_width=56.2; +remote_height=124.7; +remote_thick=6.8; +mainhole_thick=remote_thick+1; + +module hmainhole() { + cube(center=0,size=[ remote_width/2, remote_height, mainhole_thick ]); +} + + +mirror([1,0,0]){ + hmainhole(); +} +hmainhole(); -- 2.30.2