Created
November 18, 2019 18:39
-
-
Save thehans/ee42c7675078c92d878bcfd0a3862306 to your computer and use it in GitHub Desktop.
Basic duct transition using hull in OpenSCAD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fan=120; | |
ductl=110; | |
ductw=40; | |
h=150; | |
wallTh = 2; | |
module transition(h,l1,w1,l2,w2,eps=0.01) { | |
hull() { | |
cube([l1,w1,eps], center=true); | |
translate([0,0,h-eps]) cube([w2,l2,eps], center=true); | |
} | |
} | |
difference() { | |
transition(h,fan+wallTh*2,fan+wallTh*2,ductl+wallTh*2,ductw+wallTh*2); | |
translate([0,0,-0.01]) transition(h+0.02,fan,fan,ductl,ductw); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment