summaryrefslogtreecommitdiffabout
path: root/fanduct.scad
Side-by-side diff
Diffstat (limited to 'fanduct.scad') (more/less context) (ignore whitespace changes)
-rw-r--r--fanduct.scad4
1 files changed, 2 insertions, 2 deletions
diff --git a/fanduct.scad b/fanduct.scad
index 2bc5623..efc6a19 100644
--- a/fanduct.scad
+++ b/fanduct.scad
@@ -1,12 +1,12 @@
use <snapper.scad>;
extrusion_width=.5; layer_height=.2; // print parameters
epsilon=.005; // for finer cuts
-type="simple"; // circular|3jets
+type="jets"; // jets|circular|simple
ductshape="square"; // square|round
dual=true; // dual or single
nozzles_apart = 18; // distance between nozzles for dual hotend
space_behind_nozzle = 10; // space behind the nozzle where we're allowed to go
// without the fear of hitting carriage
@@ -385,13 +385,13 @@ module fanduct(type=type,ductshape=ductshape,dual=dual) {
if(dual) {
if(type=="simple") dual_simple(what);
else if(type=="jets") dual_jets(what);
else dual(what);
}else if(type=="circular") circus(what);
- else if(type=="3jets") jets(what);
+ else if(type=="jets") jets(what);
}
// *** air intake
module intake(what) {
module placeit() {
translate([-fanduct_ir-2*fanduct_shell-fanduct_w-inlet_away,0,fanduct_shell])