-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( | |||
11 | inputs = 4, | 11 | inputs = 4, |
12 | minshell = 2*extrusion_width, | 12 | minshell = 2*extrusion_width, |
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; |
18 | 18 | ||
19 | pushfit_d = pf_d(pf); | 19 | pushfit_d = pf_d(pf); |
@@ -89,12 +89,12 @@ module multimixer( | |||
89 | cylinder(d=liner_id,h=epsilon,$fn=liner_id*fnd); | 89 | cylinder(d=liner_id,h=epsilon,$fn=liner_id*fnd); |
90 | } | 90 | } |
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 | } |
96 | } | 96 | } |
97 | 97 | ||
98 | } | 98 | } |
99 | 99 | ||
100 | multimixer(debug=true); | 100 | multimixer(debug=2); |