author | Michael Krelin <hacker@klever.net> | 2018-07-25 21:24:06 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-07-25 21:39:03 (UTC) |
commit | cd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd (patch) (side-by-side diff) | |
tree | 03feb0efc71bc9a063c481f65ab6a4cada31ed05 | |
parent | a24158645c0156f5b55c9adce15e16a8eb908ba1 (diff) | |
download | extrudery-cd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd.zip extrudery-cd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd.tar.gz extrudery-cd3c9592b1b26ed98eda97fbf5b098bdcf4c1abd.tar.bz2 |
more flexible debug cutout
-rw-r--r-- | multimixer.scad | 6 |
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 @@ -12,7 +12,7 @@ module multimixer( minshell = 2*extrusion_width, shell = 5*extrusion_width, pf = pushfit_embeddest, - debug = true + debug = 0, // how many inputs -1 the debug cutout spans ) { fnd = 4*PI; fnr = 2*fnd; @@ -90,11 +90,11 @@ module multimixer( } if(debug) { translate([0,0,-20/*TODO:*/]) - rotate_extrude(angle=angular_step) + rotate_extrude(angle=angular_step*debug) square([50,100]/*TODO:*/); } } } -multimixer(debug=true); +multimixer(debug=2); |