-rw-r--r-- | another.scad | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/another.scad b/another.scad index 4a9fc01..8fd9356 100644 --- a/another.scad +++ b/another.scad | |||
@@ -49,3 +49,2 @@ module the_extruder( | |||
49 | pf_smooth = true, | 49 | pf_smooth = true, |
50 | pf_guidelen = 3, // the length of ptfe guide before pushfit | ||
51 | 50 | ||
@@ -67,2 +66,3 @@ module the_extruder( | |||
67 | min_z_shell = 4*layer_height, // the very minimal shell thickness along z-axis. | 66 | min_z_shell = 4*layer_height, // the very minimal shell thickness along z-axis. |
67 | min_xy_shell = 2*extrusion_width, | ||
68 | 68 | ||
@@ -313,2 +313,3 @@ module the_extruder( | |||
313 | // pushfit | 313 | // pushfit |
314 | pf_offset = mount_d/sqrt(2)/2+mount_screw_d; | ||
314 | translate([0,0,filament_elevation]) | 315 | translate([0,0,filament_elevation]) |
@@ -316,3 +317,3 @@ module the_extruder( | |||
316 | rotate([-90,0,0]) | 317 | rotate([-90,0,0]) |
317 | translate([0,0,mount_d/sqrt(2)/2+mount_screw_d+epsilon]) | 318 | translate([0,0,pf_offset]) |
318 | rotate([0,0,180]) { | 319 | rotate([0,0,180]) { |
@@ -320,15 +321,9 @@ module the_extruder( | |||
320 | mirror([0,0,1]) { | 321 | mirror([0,0,1]) { |
321 | translate([0,0,-epsilon]) | ||
322 | teardrop(d=filament_guide_d,h=pf_guidelen+epsilon,angle=225); | ||
323 | nl = 3.5; /* TODO: */ | ||
324 | translate([0,0,pf_guidelen-1]) | ||
325 | teardrop(d=filament_path_d,h=nl+2,angle=-225); | ||
326 | fh = (filament_guide_d-filament_path_d)/2; | 322 | fh = (filament_guide_d-filament_path_d)/2; |
327 | union() { | 323 | fo = pf_offset-(idler_d+idler_clearance)/2-fh; |
328 | translate([0,0,pf_guidelen+nl]) | 324 | translate([0,0,-1]) teardrop(d=filament_guide_d,h=fo-extrusion_width+1,angle=225); |
329 | cylinder(d1=filament_path_d,d2=filament_guide_d,h=fh,$fn=fnd*filament_guide_d); | 325 | translate([0,0,-1]) teardrop(d=filament_path_d,h=gearbox_d/2+1,angle=-225); |
330 | translate([0,0,pf_guidelen+nl+fh-epsilon]) | 326 | translate([0,0,fo+epsilon]) |
331 | teardrop(d=filament_guide_d,h=gearbox_d/2,angle=225); | 327 | cylinder(d1=filament_path_d,d2=filament_guide_d,h=fh,$fn=fnd*filament_guide_d); |
332 | } | 328 | }//mirror |
333 | } | ||
334 | }//rotate translate rotate translate rotate translate | 329 | }//rotate translate rotate translate rotate translate |