From: Ian Jackson Date: Sun, 7 Oct 2012 15:04:08 +0000 (+0100) Subject: filamenttrestle wip plug fix some dimensions nfc X-Git-Tag: filamentspool-v2-release~752^2~6 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=b2882bd4ed397a70481191f34f8608c2fae932e9 filamenttrestle wip plug fix some dimensions nfc --- diff --git a/filamenttrestle.scad b/filamenttrestle.scad index 74f6fb6..3b2c0af 100644 --- a/filamenttrestle.scad +++ b/filamenttrestle.scad @@ -11,10 +11,10 @@ guidewidth = 3; guiderad = 20; plugl = 12; -plugwmin = 4; +plugwmin = min(8, DoveClipPairSane_width(2)); plugh = 10; plugslope = 0.5; -plugwmax = plugwmin + plugh * plugslope; +plugwmax = plugwmin + plugh * plugslope * 2; module Plug(d=0){ a = atan(plugslope); @@ -22,13 +22,13 @@ module Plug(d=0){ tdy = d * sin(a); bdx = d / cos(a); rotate([90,0,90]) linear_extrude(height=plugl+0.1){ - polygon([[-(plugwmax + bdx), 0], - [-(plugwmin + tdx), plugh + tdy], - [+(plugwmin + tdx), plugh + tdy], - [+(plugwmax + bdx), 0]]); + polygon([[-(plugwmax/2 + bdx), 0], + [-(plugwmin/2 + tdx), plugh + tdy], + [+(plugwmin/2 + tdx), plugh + tdy], + [+(plugwmax/2 + bdx), 0]]); } translate([plugl + DoveClip_depth()*0.7, 0, 0]) - DoveClipPairSane(count=1, h=plugh); + DoveClipPairSane(count=1, h=plugh-0.1); } module Bar(){