From: Ian Jackson Date: Sat, 24 May 2014 17:06:37 +0000 (+0100) Subject: wall-cable-hook: with slopy top X-Git-Tag: filamentspool-v2-release~375^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=79f4e88044ef1588e08a005e7f6b97a655c066e3;p=reprap-play.git wall-cable-hook: with slopy top --- diff --git a/wall-cable-hook.scad b/wall-cable-hook.scad index 06291ac..93263e3 100644 --- a/wall-cable-hook.scad +++ b/wall-cable-hook.scad @@ -17,7 +17,11 @@ module Plan() { mirror([1,0]) square([50,50]); } translate([-circle_outer_rad, -0.1]) - square([thick, tab_sz + circle_outer_rad]); + multmatrix([[1,0,0,0], + [-1,1,0,0], + [0,0,1,0], + [0,0,0,1]]) + square([thick, tab_sz + circle_outer_rad + thick]); } Plan();