From 7a5526cdf4bcbf33e7e3c01a6397b868d51716e2 Mon Sep 17 00:00:00 2001 From: daniel watson Date: Wed, 17 Jan 2018 18:34:37 -0800 Subject: [PATCH] make 3030 sleeve to test fit --- mk2-haribo-spool-holder.scad | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/mk2-haribo-spool-holder.scad b/mk2-haribo-spool-holder.scad index 909ae66..ea8b668 100644 --- a/mk2-haribo-spool-holder.scad +++ b/mk2-haribo-spool-holder.scad @@ -38,11 +38,21 @@ module arm_half(){ translate([x / 2 - wall, y / 2 - wall]) { circle(wall); } } -arms = 4; -for(arm = [0:arms - 1]) { - rotate(arm * 360 / arms) { - arm_half(); - mirror(){ arm_half(); } } } +module 3030_profile(){ + arms = 4; + for(arm = [0:arms - 1]) { + rotate(arm * 360 / arms) { + arm_half(); + mirror(){ arm_half(); } } } } + +linear_extrude(height = 10){ + difference(){ + minkowski(){ + square(30, true); + circle(10);} + minkowski(){ + 3030_profile(); + circle(0.3);} } } /* This file is part of 3d-printables. -- 2.30.2