author | Michael Krelin <hacker@klever.net> | 2018-07-31 19:30:01 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-07-31 19:30:01 (UTC) |
commit | 462211cfe016303ddba204c62dde0ffbb78660a4 (patch) (side-by-side diff) | |
tree | 6b0d8e0b2d29d3f82a0d81ccab8afce9de53d7f2 | |
parent | 5765a244444bedd82c833758dfde721274a4b947 (diff) | |
download | extrudery-462211cfe016303ddba204c62dde0ffbb78660a4.zip extrudery-462211cfe016303ddba204c62dde0ffbb78660a4.tar.gz extrudery-462211cfe016303ddba204c62dde0ffbb78660a4.tar.bz2 |
pass draft down the chain from multiswitch to pushfit
-rw-r--r-- | multiswitch.scad | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/multiswitch.scad b/multiswitch.scad index 75d95e4..ae85ee3 100644 --- a/multiswitch.scad +++ b/multiswitch.scad @@ -2,2 +2,3 @@ layer_height=.2; extrusion_width=.5; epsilon=.01; +draft = true; @@ -13,3 +14,5 @@ module multiswitch( pf = pushfit_embeddest, + debug = 0, // how many inputs -1 the debug cutout spans + draft = draft, print = true, @@ -77,3 +80,3 @@ module multiswitch( forinputs() { - translate([0,0,l_input]) pushfit(pf); + translate([0,0,l_input]) pushfit(pf,draft=draft); translate([0,0,l_narrow]) { @@ -86,3 +89,3 @@ module multiswitch( foroutput() { - translate([0,0,l_output]) pushfit(pf); + translate([0,0,l_output]) pushfit(pf,draft=draft); cylinder(d=lod,h=l_output+1,$fn=lod*fnd); |