summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2018-07-26 06:16:29 (UTC)
committer Michael Krelin <hacker@klever.net>2018-07-26 06:16:29 (UTC)
commit28081c9a7232b051b3b364ad5450b17f2561edbe (patch) (unidiff)
tree3b951805b63188f53222bc880a58714101d52dcc
parent9addf25637ad73a41c3ab2e9610b8a50166805fa (diff)
downloadextrudery-28081c9a7232b051b3b364ad5450b17f2561edbe.zip
extrudery-28081c9a7232b051b3b364ad5450b17f2561edbe.tar.gz
extrudery-28081c9a7232b051b3b364ad5450b17f2561edbe.tar.bz2
print is true by default, but false for development
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--multimixer.scad4
1 files changed, 2 insertions, 2 deletions
diff --git a/multimixer.scad b/multimixer.scad
index 73980b1..4d4473e 100644
--- a/multimixer.scad
+++ b/multimixer.scad
@@ -9,13 +9,13 @@ module multimixer(
9 angle = 15, // to the vertical (output) axis 9 angle = 15, // to the vertical (output) axis
10 inputs = 4, 10 inputs = 4,
11 minshell = 2*extrusion_width, 11 minshell = 2*extrusion_width,
12 shell = 5*extrusion_width, 12 shell = 5*extrusion_width,
13 pf = pushfit_embeddest, 13 pf = pushfit_embeddest,
14 debug = 0, // how many inputs -1 the debug cutout spans 14 debug = 0, // how many inputs -1 the debug cutout spans
15 print = false, 15 print = true,
16 16
17 liner_d_tolerance=.2 17 liner_d_tolerance=.2
18) { 18) {
19 fnd = 4*PI; fnr = 2*fnd; 19 fnd = 4*PI; fnr = 2*fnd;
20 20
21 pushfit_d = pf_d(pf); 21 pushfit_d = pf_d(pf);
@@ -99,7 +99,7 @@ module multimixer(
99 square([50,100]/*TODO:*/); 99 square([50,100]/*TODO:*/);
100 } 100 }
101 } 101 }
102 102
103} 103}
104 104
105multimixer(debug=2); 105multimixer(debug=2,print=false);