author | Michael Krelin <hacker@klever.net> | 2018-08-11 14:25:28 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-08-11 14:25:28 (UTC) |
commit | 6ff4b3c2e76bbc6d37e933bcab7c47260785cab6 (patch) (side-by-side diff) | |
tree | 4b7b408a2e5039d320fae3e15d1bf1cc912dbc2a | |
parent | 495bcda94c4b32b13044cfa9e97c8ea25b32cdfb (diff) | |
download | extrudery-6ff4b3c2e76bbc6d37e933bcab7c47260785cab6.zip extrudery-6ff4b3c2e76bbc6d37e933bcab7c47260785cab6.tar.gz extrudery-6ff4b3c2e76bbc6d37e933bcab7c47260785cab6.tar.bz2 |
adjusted filament path
it used to within the pulley, but now it's only half there
-rw-r--r-- | another.scad | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/another.scad b/another.scad index 2ea5417..be0c887 100644 --- a/another.scad +++ b/another.scad @@ -122,3 +122,3 @@ module the_extruder( // filament path - rotate([0,0,45]) translate([(pulley_d-filament_path_d)/2,0,0]) { + rotate([0,0,45]) translate([pulley_d/2,0,0]) { rotate([90,0,0]) cylinder(d=filament_d,h=gearbox_d*2,center=true,$fn=15); @@ -153,3 +153,3 @@ module the_extruder( place_idler() { - translate([-(idler_d+filament_path_d)/2,0,0]) rotate([90,0,0]) { + translate([-idler_d/2,0,0]) rotate([90,0,0]) { cylinder(d=filament_path_d,h=3*gearbox_d,center=true,$fn=30); @@ -158,6 +158,6 @@ module the_extruder( }//rotate translate - translate([-(idler_d+filament_path_d)/2,0,0]) + translate([-idler_d/2,0,0]) rotate([90,0,0]) translate([0,0, - sqrt(2)*(mount_d-pulley_d+filament_path_d+lsd)/2 + sqrt(2)*(mount_d-pulley_d+lsd)/2 ]) { @@ -247,3 +247,3 @@ module the_extruder( translate([0,0,filament_elevation]) - rotate([0,0,45]) translate([(pulley_d-filament_path_d)/2,0,0]) + rotate([0,0,45]) translate([pulley_d/2,0,0]) rotate([-90,0,0]) @@ -281,3 +281,3 @@ module the_extruder( translate([0,0,filament_elevation]) - rotate([0,0,45]) translate([(pulley_d-filament_path_d)/2,0,0]) + rotate([0,0,45]) translate([pulley_d/2,0,0]) rotate([-90,0,0]) |