summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--another.scad12
1 files changed, 10 insertions, 2 deletions
diff --git a/another.scad b/another.scad
index b1cbdeb..cc3194e 100644
--- a/another.scad
+++ b/another.scad
@@ -418,2 +418,3 @@ module the_extruder(
418 hf = (bigd-smalld)/2; 418 hf = (bigd-smalld)/2;
419 h = hf*3.5;
419 translate([-gearbox_d/2+st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+1,-longwing,filament_elevation]) 420 translate([-gearbox_d/2+st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+1,-longwing,filament_elevation])
@@ -423,5 +424,12 @@ module the_extruder(
423 translate([0,0,hf-epsilon]) 424 translate([0,0,hf-epsilon])
424 cylinder(d=bigd,h=hf*2,$fn=fnd*bigd); 425 cylinder(d=bigd,h=h-hf,$fn=fnd*bigd);
425 translate([0,0,3*hf]) 426 translate([0,0,h])
426 sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4); 427 sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4);
428 l = body_h-ls_z;
429 w = st_thinshell;
430 hull() translate([0,-st_thinshell/2,0]) mirror([1,0,0]) {
431 translate([0,0,w])
432 cube(size=[l,st_thinshell,w]);
433 cube(size=[l-w,st_thinshell,2*w]);
434 }
427 } 435 }