chiark / gitweb /
laptop-sound-cable-hooks: wip
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 31 May 2022 16:50:17 +0000 (17:50 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 31 May 2022 16:50:17 +0000 (17:50 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
laptop-sound-cable-hooks.scad [new file with mode: 0644]

diff --git a/laptop-sound-cable-hooks.scad b/laptop-sound-cable-hooks.scad
new file mode 100644 (file)
index 0000000..6d5b7ce
--- /dev/null
@@ -0,0 +1,21 @@
+// -*- C -*-
+
+include <utils.scad>
+
+plug_l_d = [[ 27.78,
+             10.62 + 0.50 ],
+           [ 40.88,
+             8.56 + 0.50 ],
+           ];
+
+module PlugPlan() {
+  for (l_d = plug_l_d) {
+    l = l_d[0];
+    d = l_d[1];
+    rectfromto([ -l, -d/2 ],
+              [  0, +d/2 ]);
+  }
+}
+
+PlugPlan();
+