-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 @@ -13,5 +13,5 @@ module multimixer( 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; @@ -91,5 +91,5 @@ module multimixer( if(debug) { translate([0,0,-20/*TODO:*/]) - rotate_extrude(angle=angular_step) + rotate_extrude(angle=angular_step*debug) square([50,100]/*TODO:*/); } @@ -98,3 +98,3 @@ module multimixer( } -multimixer(debug=true); +multimixer(debug=2); |