summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2018-07-25 21:24:06 (UTC)
committer Michael Krelin <hacker@klever.net>2018-07-25 21:39:03 (UTC)
commitcd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd (patch) (unidiff)
tree03feb0efc71bc9a063c481f65ab6a4cada31ed05
parenta24158645c0156f5b55c9adce15e16a8eb908ba1 (diff)
downloadextrudery-cd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd.zip
extrudery-cd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd.tar.gz
extrudery-cd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd.tar.bz2
more flexible debug cutout
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--multimixer.scad6
1 files changed, 3 insertions, 3 deletions
diff --git a/multimixer.scad b/multimixer.scad
index 0893457..21f71e4 100644
--- a/multimixer.scad
+++ b/multimixer.scad
@@ -13,5 +13,5 @@ module multimixer(
13 shell = 5*extrusion_width, 13 shell = 5*extrusion_width,
14 pf = pushfit_embeddest, 14 pf = pushfit_embeddest,
15 debug = true 15 debug = 0, // how many inputs -1 the debug cutout spans
16) { 16) {
17 fnd = 4*PI; fnr = 2*fnd; 17 fnd = 4*PI; fnr = 2*fnd;
@@ -91,5 +91,5 @@ module multimixer(
91 if(debug) { 91 if(debug) {
92 translate([0,0,-20/*TODO:*/]) 92 translate([0,0,-20/*TODO:*/])
93 rotate_extrude(angle=angular_step) 93 rotate_extrude(angle=angular_step*debug)
94 square([50,100]/*TODO:*/); 94 square([50,100]/*TODO:*/);
95 } 95 }
@@ -98,3 +98,3 @@ module multimixer(
98} 98}
99 99
100multimixer(debug=true); 100multimixer(debug=2);