From 4f7753568c11b0c328fefe6d7b1746638277e7e1 Mon Sep 17 00:00:00 2001 From: daniel watson Date: Thu, 3 Apr 2014 22:35:12 -0700 Subject: [PATCH] make wheel solid because 2nd nozzle is broken --- 3d-printables/wheel.scad | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/3d-printables/wheel.scad b/3d-printables/wheel.scad index bcf91f8..4b806f4 100644 --- a/3d-printables/wheel.scad +++ b/3d-printables/wheel.scad @@ -101,9 +101,38 @@ module wheel(radius, tread_radius); wheel_white();} +module wheel_solid(radius, + width, + shaft_radius, + shaft_flat_width, + wall_width, + tread_radius){ + difference(){ + rim(radius, wall_width, width); + translate([0, 0, width / 2]){ + tread(radius, tread_radius);}} + qr_size = 54; + qr_height = 2; + linear_extrude(height = qr_height){ + square(qr_size, center = true);} + translate([0, 0, qr_height]){ + motor_shaft_holder(shaft_radius, + shaft_flat_width, + wall_width, + width - qr_height);}} + +/* wheel(wheel_radius, wheel_width, motor_shaft_radius, motor_shaft_flat_width, wall_width, tread_radius); +*/ + +wheel_solid(wheel_radius, + wheel_width, + motor_shaft_radius, + motor_shaft_flat_width, + wall_width, + tread_radius); -- 2.30.2