Compare commits

..

No commits in common. "603d5b021925273719692fd2d33779f511bb19e6" and "e6ef1ff395fa100b86c7e405edfdd9cf496b9170" have entirely different histories.

2 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ module m3_bolt(pos = [0, 0, 0], rot = [0, 0, 0], cap = 10, bolt = 20) {
$fn = 40;
translate(pos) rotate(rot) {
translate([0, 0, (cap / 2) - 0.1]) cylinder(r = R(6), h = cap, center = true);
translate([0, 0, -bolt / 2]) cylinder(r = R(3.15), h = bolt, center = true);
translate([0, 0, -bolt / 2]) cylinder(r = R(3), h = bolt, center = true);
}
}