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

parent 76d50fcd
No related branches found
No related tags found
No related merge requests found
......@@ -142,6 +142,38 @@ fu_strength = 2; // material strength
fu_outlet_w = (hs_fin_cnt / 2) * hs_fin_w0 + (hs_fin_cnt / 2 - 1) * hs_fin_spacing; // Σ of fins spacing and width calculated over one side;
module tri(w, h) {
polygon([
[0, -h/2],
[0, h/2],
[w, 0]
]);
}
// length of the outlet
x = 10; // TODO: rename!!!!
// difference between x and the split
xx = 10;
// The profile of the funnel, ready for extrusion
module funnel2D() {
_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]);
}
module funnel() {
color("#1CFF2F20") {
// TODO: implement!
......@@ -158,6 +190,6 @@ module preview() {
}
preview();
funnel2D();
// preview();
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