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

parent 107ddb9b
No related branches found
No related tags found
No related merge requests found
......@@ -220,7 +220,7 @@ module funnelFins(
_str = ff_str
) {
module fin(y) {
module fin(x, y) {
module _fF(y) {
translate([0, -y/2, 0]) square([x, y]);
translate([0, 0, 0]) roundTri((x*9) * (y/w), y, 5);
......@@ -232,7 +232,8 @@ module funnelFins(
}
}
for (y=[0:fin_cnt/2 - 1]) fin(w - y * (fin_w0 + fin_spacing) * 2);
_x = 5;
for (y=[0:fin_cnt/2 - 1]) fin( -(y/fin_cnt/2 - 1) * _x, w - y * (fin_w0 + fin_spacing) * 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