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.
9 lines
226 B
9 lines
226 B
// 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);
|
|
}
|
|
|