author | Michael Krelin <hacker@klever.net> | 2018-07-26 06:16:29 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-07-26 06:16:29 (UTC) |
commit | 28081c9a7232b051b3b364ad5450b17f2561edbe (patch) (side-by-side diff) | |
tree | 3b951805b63188f53222bc880a58714101d52dcc | |
parent | 9addf25637ad73a41c3ab2e9610b8a50166805fa (diff) | |
download | extrudery-28081c9a7232b051b3b364ad5450b17f2561edbe.zip extrudery-28081c9a7232b051b3b364ad5450b17f2561edbe.tar.gz extrudery-28081c9a7232b051b3b364ad5450b17f2561edbe.tar.bz2 |
print is true by default, but false for development
-rw-r--r-- | multimixer.scad | 4 |
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 @@ -12,7 +12,7 @@ module multimixer( shell = 5*extrusion_width, pf = pushfit_embeddest, debug = 0, // how many inputs -1 the debug cutout spans - print = false, + print = true, liner_d_tolerance=.2 ) { @@ -102,4 +102,4 @@ module multimixer( } -multimixer(debug=2); +multimixer(debug=2,print=false); |