-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 @@ -11,9 +11,9 @@ module multimixer( inputs = 4, 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; pushfit_d = pf_d(pf); @@ -89,12 +89,12 @@ module multimixer( cylinder(d=liner_id,h=epsilon,$fn=liner_id*fnd); } 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); |