You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
289 B
17 lines
289 B
// Hub
|
|
cylinder(d=20, h=5, center=true);
|
|
|
|
// First blade
|
|
rotate([0, 15, 0])
|
|
translate([-5,5,-1])
|
|
cube([10, 30, 2]);
|
|
|
|
// Second blade
|
|
rotate([0, 15, 120])
|
|
translate([-5,5,-1])
|
|
cube([10, 30, 2]);
|
|
|
|
// Third blade
|
|
rotate([0, 15, 240])
|
|
translate([-5,5,-1])
|
|
cube([10, 30, 2]);
|
|
|