author | Michael Krelin <hacker@klever.net> | 2016-05-30 23:23:06 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-05-30 23:23:06 (UTC) |
commit | 36928b70c94190b739af1dbd39b2680b21f949d0 (patch) (unidiff) | |
tree | 515d3ca2284d56cbb98044f6938d7f7b4ba5c1ee | |
parent | c11d5b7e8f4b8f0e7a20d81dd813a21e19b705c3 (diff) | |
download | fanductory-36928b70c94190b739af1dbd39b2680b21f949d0.zip fanductory-36928b70c94190b739af1dbd39b2680b21f949d0.tar.gz fanductory-36928b70c94190b739af1dbd39b2680b21f949d0.tar.bz2 |
work around the lack of air guides
intersection with empty airguides part isn't what one may expect it to be.
-rw-r--r-- | fanduct.scad | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fanduct.scad b/fanduct.scad index f4bb705..563920c 100644 --- a/fanduct.scad +++ b/fanduct.scad | |||
@@ -226,7 +226,10 @@ module fanduct(type=type) { | |||
226 | parts("out"); | 226 | parts("out"); |
227 | } | 227 | } |
228 | intersection() { | 228 | intersection() { |
229 | output("airguides"); | 229 | union() { |
230 | output("airguides"); | ||
231 | sphere(d=epsilon); | ||
232 | } | ||
230 | union() { | 233 | union() { |
231 | duct("in"); output("in"); intake("in"); | 234 | duct("in"); output("in"); intake("in"); |
232 | } | 235 | } |