From: Ian Jackson Date: Sat, 24 May 2014 17:04:14 +0000 (+0100) Subject: wall-cable-hook: before slopy top X-Git-Tag: filamentspool-v2-release~375^2~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a0fd39b3eff8e80e2823b62cc9609946db09f43d;p=reprap-play.git wall-cable-hook: before slopy top --- diff --git a/wall-cable-hook.scad b/wall-cable-hook.scad new file mode 100644 index 0000000..06291ac --- /dev/null +++ b/wall-cable-hook.scad @@ -0,0 +1,23 @@ +// -*- C -*- + +circle_inner_rad = 10; + +thick = 3; + +tab_sz = 15; + +// calculated + +circle_outer_rad = circle_inner_rad + thick; + +module Plan() { + difference(){ + circle(r=circle_outer_rad); + circle(r=circle_inner_rad); + mirror([1,0]) square([50,50]); + } + translate([-circle_outer_rad, -0.1]) + square([thick, tab_sz + circle_outer_rad]); +} + +Plan();