From: Ian Jackson Date: Tue, 31 May 2022 16:50:17 +0000 (+0100) Subject: laptop-sound-cable-hooks: wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=e8b6b700517e98d800f1e263961b6f6bd9685685;p=reprap-play.git laptop-sound-cable-hooks: wip Signed-off-by: Ian Jackson --- diff --git a/laptop-sound-cable-hooks.scad b/laptop-sound-cable-hooks.scad new file mode 100644 index 0000000..6d5b7ce --- /dev/null +++ b/laptop-sound-cable-hooks.scad @@ -0,0 +1,21 @@ +// -*- C -*- + +include + +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(); +