From: Ian Jackson Date: Tue, 31 May 2022 16:57:07 +0000 (+0100) Subject: laptop-sound-cable-hooks: wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9ff1142514d8f1e0c3f315f7aed9a5adcb6786b6;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 index 6d5b7ce..30a72e0 100644 --- a/laptop-sound-cable-hooks.scad +++ b/laptop-sound-cable-hooks.scad @@ -2,13 +2,18 @@ include +wall_th = 2; + plug_l_d = [[ 27.78, 10.62 + 0.50 ], [ 40.88, 8.56 + 0.50 ], ]; -module PlugPlan() { +plug_stem = [ 2.72 + 0.50, + 5.20 + 0.50 ]; + +module PlugMainPlan() { for (l_d = plug_l_d) { l = l_d[0]; d = l_d[1]; @@ -17,5 +22,18 @@ module PlugPlan() { } } -PlugPlan(); +module PlugBodyPlan() { + intersection(){ + hull() + offset(r= wall_th) + PlugMainPlan(); + rectfromto([-100,-100], [0,+100]); + } +} + +module DemoPlan() { + translate([0,0,-5]) color("grey") PlugBodyPlan(); + PlugMainPlan(); +} +DemoPlan();