From: Ian Jackson Date: Tue, 31 May 2022 17:51:07 +0000 (+0100) Subject: laptop-sound-cable-hooks: wip other hook X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8c264ec8ef4e241931e5d034c52c34c2cc7210d2;p=reprap-play.git laptop-sound-cable-hooks: wip other hook Signed-off-by: Ian Jackson --- diff --git a/laptop-sound-cable-hooks.scad b/laptop-sound-cable-hooks.scad index f144bae..ed21c84 100644 --- a/laptop-sound-cable-hooks.scad +++ b/laptop-sound-cable-hooks.scad @@ -5,6 +5,8 @@ include wall_th = 2; hook_th = 4; hook_hole = 4; +hook_w_min = 6; +hook_hook = 12; plug_entry_gap = 1.0; @@ -76,7 +78,15 @@ module TonguePlan(){ } module FarHookPlan(){ - TonguePlan(); + mirror([1,0,0]) + TonguePlan(); + + rectfromto([ 0, z_hook_min ], + [ hook_w_min, palmrest_from_plug_z + 0.1]); + + translate([0, palmrest_from_plug_z]) + rectfromto([ -hook_hook, 0 ], + [ hook_w_min, hook_w_min ]); } module RotateIntersect(n=6){ @@ -125,8 +135,6 @@ module DemoPlan() { ////toplevel } translate([0,40,0]) { - mirror([1,0,0]) { - FarHookPlan(); - } + FarHookPlan(); } }