From: daniel watson Date: Mon, 9 Dec 2013 23:16:27 +0000 (-0800) Subject: make wheel large, but print fast X-Git-Url: http://challenge-bot.com/repos/?p=challenge-bot;a=commitdiff_plain;h=81cb0a55101e43254350c048d9986542b831455f make wheel large, but print fast --- diff --git a/3d-printables/wheel.scad b/3d-printables/wheel.scad index 87ec286..1a0a5c5 100644 --- a/3d-printables/wheel.scad +++ b/3d-printables/wheel.scad @@ -10,7 +10,7 @@ $fn = 20; wheel_depth = 6; -wheel_radius = 68/2; +wheel_radius = 130/2; module encoder_shaft(){ // measured with calipers, checked against the motor shaft @@ -43,10 +43,10 @@ module wheel(){ translate([0, 0, wheel_depth / 4]){ difference(){ cylinder(h = wheel_depth / 1.2, - r = 0.85 * wheel_radius, + r = wheel_radius - 3, center = true); cylinder(h = wheel_depth / 1.2, - r = 0.23 * wheel_radius, + r = 6, center = true);}}}}} module wheel_block(){ @@ -56,9 +56,9 @@ module pie_slice(){ intersection(){ translate([0, 0, wheel_depth / 2]){ cylinder(h = wheel_depth, - r = 0.85 * wheel_radius, + r = wheel_radius - 3, center = true);} - translate([0, wheel_radius * 0.3, 0]){ + translate([0, wheel_radius * 0.2, 0]){ rotate([0, 0, (360 / 5) / 2]){ intersection(){ wheel_block();