commit
b8db73f65c
9 changed files with 46 additions and 0 deletions
@ -0,0 +1,2 @@ |
|||
translate([20,20,20]) |
|||
cube([20,10,5], center=true); |
|||
@ -0,0 +1 @@ |
|||
cylinder(r=10, h=20); |
|||
@ -0,0 +1 @@ |
|||
cylinder(r=10, h=20, $fn=6); |
|||
@ -0,0 +1 @@ |
|||
sphere(r=20, $fa=1, $fs=0.5); |
|||
@ -0,0 +1,9 @@ |
|||
// M10 Bolt |
|||
union() { |
|||
// A standard M10 bolt has a 19,62mm diameter and an height of 5mm |
|||
color([0.5,0.5,0.5]) |
|||
cylinder(d=19.62, h=5, $fn=6); |
|||
translate ([0,0,5]) |
|||
color([0.7,0.7,0.7]) |
|||
cylinder(d=10, h=50); |
|||
} |
|||
@ -0,0 +1,4 @@ |
|||
union() { |
|||
color([1,0,0]) cube([20,20,20], center=true); |
|||
color([0,0,1]) sphere(14); |
|||
} |
|||
@ -0,0 +1,5 @@ |
|||
// A standard washer that has a nominal diameter of 12mm |
|||
difference() { |
|||
cylinder(d=24, h=3, center=true); |
|||
cylinder(d=12, h=4, center=true); |
|||
} |
|||
@ -0,0 +1,17 @@ |
|||
// 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]); |
|||
@ -0,0 +1,6 @@ |
|||
|
|||
intersection() { |
|||
cube([50,50,2], center=true); |
|||
rotate([0,0,45]) |
|||
cube([50,50,2], center=true); |
|||
} |
|||
Loading…
Reference in new issue