-rw-r--r-- | fanduct.scad | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/fanduct.scad b/fanduct.scad index fc57c57..c402312 100644 --- a/fanduct.scad +++ b/fanduct.scad | |||
@@ -126,9 +126,9 @@ module fanduct(type=type,ductshape=ductshape,dual=dual) { | |||
126 | module pin(xy) { | 126 | module pin(xy) { |
127 | translate([xy[0],xy[1],0]) | 127 | translate([xy[0],xy[1],0]) |
128 | cylinder(d=2*extrusion_width,h=2*fanduct_shell+inlet_h,$fn=6); | 128 | cylinder(d=2*extrusion_width,h=2*fanduct_shell+inlet_h,$fn=6); |
129 | } | 129 | } |
130 | xyxyxy=concat(xyxy,[[0,0]]); | 130 | xyxyxy=concat(xyxy,[[0,dual?nozzles_apart/2:0]]); |
131 | for(i=[0:1:len(xyxyxy)-2]) | 131 | for(i=[0:1:len(xyxyxy)-2]) |
132 | hull() for(j=[i,i+1]) pin(xyxyxy[j]); | 132 | hull() for(j=[i,i+1]) pin(xyxyxy[j]); |
133 | } | 133 | } |
134 | 134 | ||
@@ -234,8 +234,20 @@ module fanduct(type=type,ductshape=ductshape,dual=dual) { | |||
234 | hulls() { | 234 | hulls() { |
235 | translate([0,0,fanduct_shell]) cylinder(d=fanduct_w,h=fanduct_h/2-fanduct_shell/2); | 235 | translate([0,0,fanduct_shell]) cylinder(d=fanduct_w,h=fanduct_h/2-fanduct_shell/2); |
236 | translate([0,-nozzles_apart/2,-fanduct_elevation+fanduct_blowtarget]) sphere(d=.1); | 236 | translate([0,-nozzles_apart/2,-fanduct_elevation+fanduct_blowtarget]) sphere(d=.1); |
237 | } | 237 | } |
238 | }else if(what=="airguides") { | ||
239 | far = fanduct_ir+fanduct_shell+fanduct_w; | ||
240 | near = fanduct_ir; | ||
241 | union() { | ||
242 | for(my=[0,1]) mirror([0,my,0]) { | ||
243 | guideline([ [-far ,0], [0,0] ]); | ||
244 | guideline([ [-far ,inlet_w/2/4], | ||
245 | [-near ,nozzles_apart/2] ]); | ||
246 | guideline([ [-near-fanduct_w/3,nozzles_apart/2+near+fanduct_w/3] ]); | ||
247 | guideline([ [0 ,nozzles_apart/2+near+fanduct_w/2] ]); | ||
248 | } | ||
249 | } | ||
238 | } | 250 | } |
239 | } | 251 | } |
240 | 252 | ||
241 | if(dual) dual(what); | 253 | if(dual) dual(what); |