Skip to content

Instantly share code, notes, and snippets.

@thehans
Created November 18, 2019 18:39
Show Gist options
  • Save thehans/ee42c7675078c92d878bcfd0a3862306 to your computer and use it in GitHub Desktop.
Save thehans/ee42c7675078c92d878bcfd0a3862306 to your computer and use it in GitHub Desktop.
Basic duct transition using hull in OpenSCAD
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