From a0fd39b3eff8e80e2823b62cc9609946db09f43d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 24 May 2014 18:04:14 +0100 Subject: [PATCH] wall-cable-hook: before slopy top --- wall-cable-hook.scad | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 wall-cable-hook.scad 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(); -- 2.30.2