Ball bearing chamfer less and 6808 hub corrected.

This commit is contained in:
Chris Palmer 2020-04-11 23:46:37 +01:00
parent ac4a5500a9
commit efff17dfc7
4 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

After

Width:  |  Height:  |  Size: 85 KiB

View File

@ -49,7 +49,7 @@ module ball_bearing(type) { //! Draw a ball bearing
color("silver") {
$fn = 360;
rim_chamfer = rim / 5;
rim_chamfer = rim / 6;
rotate_extrude()
hull() {
translate([or - rim / 2, 0])
@ -59,7 +59,7 @@ module ball_bearing(type) { //! Draw a ball bearing
square([rim - rim_chamfer, h], center = true);
}
hub_chamfer = hub / 5;
hub_chamfer = hub / 6;
rotate_extrude()
hull() {
translate([ir + hub / 2, 0])

View File

@ -20,7 +20,7 @@ BB624 = ["624", 4, 13, 5, "blue", 1.2, 1.2]; // 624 ball bearing for id
BB608 = ["608", 8, 22, 7, "OrangeRed", 1.4, 2.0]; // 608 bearings for wades
BB6200 = ["6200", 10, 30, 9, "black", 2.3, 3.6]; // 6200 bearings for KP pillow blocks
BB6201 = ["6201", 12, 32, 10, "black", 2.4, 3.7]; // 6201 bearings for KP pillow blocks
BB6808 = ["6808", 40, 52, 7, "black", 1.5, 1.5];
BB6808 = ["6808", 40, 52, 7, "black", 1.5, 1.6];
ball_bearings = [BB624, BB608, BB6200, BB6201, BB6808];
use <ball_bearing.scad>