From: Ian Jackson Date: Wed, 28 Nov 2018 22:41:03 +0000 (+0000) Subject: poster-tube-lid: Separate out CatchTipProfile X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=cf9437eeafb02b8f491eb63738cdda6cfe4e0587;p=reprap-play.git poster-tube-lid: Separate out CatchTipProfile Signed-off-by: Ian Jackson --- diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index fdaf3bf..ad563a9 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -79,6 +79,7 @@ sm_closure_cnr = 3.0; catch_stalk_h = 5.0; catch_stalk_len = 50; +catch_tip_th = 5; catch_head_th = 3; catch_pin_slop = 0.25; // each side, and above @@ -609,7 +610,7 @@ module CatchAssemblyCoreProfile(){ ]); } -module CatchHeadProfile(){ +module CatchTipProfile(){ intersection(){ translate(cppF){ difference(){ @@ -624,6 +625,9 @@ module CatchHeadProfile(){ cppc, cppb ]); } +} + +module CatchHeadProfile(){ polygon([ cppd, cppg, cppf, @@ -636,6 +640,9 @@ module CatchCore(){ /////toplevel linear_extrude(height=catch_strap_thick, convexity=10) CatchAssemblyCoreProfile(); + linear_extrude(height=catch_tip_th, convexity=10) + CatchTipProfile(); + linear_extrude(height=catch_head_th, convexity=10) CatchHeadProfile();