ArthurGibbs / ParaProp

Fully Parametric scad code to generate the propeller of your dreams!
1 stars 0 forks source link

mount fairing fails in master diff with more than 2 sections #1

Open ArthurGibbs opened 10 years ago

ArthurGibbs commented 10 years ago

module blades( h=10, or=10, ir=9, number=3){ for ( i = [0 : number] ){ rotate([0,0,360/number_i]){ translate(v=[0,-ir,h/10_6]) color("Gray")blade(sections=10,startwidth=0.4,startheight=0.6,endwidth=0.1);<<issue here }
}
color("DimGray")mounts(h=h,number=number,or=or, ir=ir); }