Skip to content
Snippets Groups Projects
Commit a222b4e3 authored by fxk8y's avatar fxk8y :spider:
Browse files

Begin developing air funnel split

parent 0b5a7e78
No related branches found
No related tags found
No related merge requests found
...@@ -159,19 +159,25 @@ module tri(w, h) { ...@@ -159,19 +159,25 @@ module tri(w, h) {
// length of the outlet // length of the outlet
x = 10; // TODO: rename!!!! x = 5; // TODO: rename!!!!
// difference between x and the split
xx = 10;
// The profile of the funnel, ready for extrusion // The profile of the funnel, ready for extrusion
module funnel2D() { module funnel2D() {
_y = hs_w/2 - fu_outlet_w; _y = hs_w/2 - fu_outlet_w;
translate([0, _y, 0]) square([x, fu_outlet_w]);
translate([0, -_y - fu_outlet_w, 0]) square([x, fu_outlet_w]); difference() {
union() {
translate([0, 0, 0]) tri(xx, _y); translate([0, _y, 0]) square([x, fu_outlet_w]);
translate([0, -_y - fu_outlet_w, 0]) square([x, fu_outlet_w]);
// air funnel split
translate([x, 0, 0]) tri(_y*4, hs_w);
}
// air funnel split
translate([x, 0, 0]) tri(x*2, _y*2);
}
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment