summaryrefslogtreecommitdiffabout
path: root/fanduct.scad
authorMichael Krelin <hacker@klever.net>2016-07-22 12:44:23 (UTC)
committer Michael Krelin <hacker@klever.net>2016-07-22 12:44:23 (UTC)
commit57ffe20dcc5e5c0077272e8a0a3bb093d4da001d (patch) (side-by-side diff)
tree773c2977611b5efd34eaac3936d0779ce996c1d8 /fanduct.scad
parent6ea7375f142f59cf9d97c86bf70a765d76b436eb (diff)
downloadfanductory-57ffe20dcc5e5c0077272e8a0a3bb093d4da001d.zip
fanductory-57ffe20dcc5e5c0077272e8a0a3bb093d4da001d.tar.gz
fanductory-57ffe20dcc5e5c0077272e8a0a3bb093d4da001d.tar.bz2
change 3jets to jets
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,18 +1,18 @@
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
inlet_w = 12.5; // inlet width
inlet_h = 17; // inlet height
inlet_short_l = 7; // inlet length of protrusion (or depth of intrusion:))
inlet_away = 15; // how far away inlet is
@@ -379,25 +379,25 @@ module fanduct(type=type,ductshape=ductshape,dual=dual) {
cylinder(d=fanduct_w,h=fanduct_h*2/3);
translate([0,nozzles_apart/2,-fanduct_elevation+fanduct_blowtarget])
rotate([0,90,0]) cylinder(d=.5,h=fanduct_w*2,center=true);
}
}
}
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])
rotate([0,-90,0])
children();
}
if(what=="in") {
placeit() translate([0,-inlet_w/2,0]) {
difference() {