chiark / gitweb /
light-bracket: wip
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 2 Jul 2012 23:33:47 +0000 (00:33 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 2 Jul 2012 23:33:47 +0000 (00:33 +0100)
light-bracket.scad [new file with mode: 0644]

diff --git a/light-bracket.scad b/light-bracket.scad
new file mode 100644 (file)
index 0000000..167ce9f
--- /dev/null
@@ -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();