From 716737309b496408d81f584eebf7a1f9605065fc Mon Sep 17 00:00:00 2001 From: daniel watson Date: Thu, 18 Jan 2018 19:46:08 -0800 Subject: [PATCH] squish 3030 outside corner and lock in tight fitting print settings --- mk2-haribo-spool-holder.scad | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/mk2-haribo-spool-holder.scad b/mk2-haribo-spool-holder.scad index ea8b668..e7d28d2 100644 --- a/mk2-haribo-spool-holder.scad +++ b/mk2-haribo-spool-holder.scad @@ -14,7 +14,7 @@ inner_block = 12; outer_block = (30 - 16.5) / 2; wall = 2; -$fn = 40; +$fn = 100; module arm_half(){ // inner block @@ -35,8 +35,9 @@ module arm_half(){ translate([(opening_width + wall) / 2, (y - wall) / 2]){ circle(d = wall); } // rounded part around outside of extrusion - translate([x / 2 - wall, y / 2 - wall]) { - circle(wall); } } + corner_squish = 0.1; + translate([x / 2 - wall + corner_squish, y / 2 - wall + corner_squish]) { + circle(wall - corner_squish); } } module 3030_profile(){ arms = 4; @@ -45,14 +46,15 @@ module 3030_profile(){ arm_half(); mirror(){ arm_half(); } } } } -linear_extrude(height = 10){ +linear_extrude(height = 35){ difference(){ minkowski(){ square(30, true); - circle(10);} + circle(5);} minkowski(){ - 3030_profile(); - circle(0.3);} } } + 3030_profile(); + circle(0.2);} } } + /* This file is part of 3d-printables. -- 2.30.2