summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--another.scad18
1 files changed, 10 insertions, 8 deletions
diff --git a/another.scad b/another.scad
index 79cebdd..a3f5dc9 100644
--- a/another.scad
+++ b/another.scad
@@ -336,6 +336,7 @@ module the_extruder(
336 }//rotate translate rotate translate rotate translate 336 }//rotate translate rotate translate rotate translate
337 // pulley 337 // pulley
338 cylinder(d=pulley_d+pulley_d_clearance,h=body_h+1,$fn=fnd*(pulley_d+pulley_d_clearance)); 338 cylinder(d=pulley_d+pulley_d_clearance,h=body_h+1,$fn=fnd*(pulley_d+pulley_d_clearance));
339
339 // leverspace 340 // leverspace
340 hull() for(x=[0,gearbox_d]) 341 hull() for(x=[0,gearbox_d])
341 rotate([0,0,45]) 342 rotate([0,0,45])
@@ -353,6 +354,15 @@ module the_extruder(
353 translate([-r-1,0,-ls_h/2-1]) cube(size=[2*r+2,r+1,ls_h+2]); 354 translate([-r-1,0,-ls_h/2-1]) cube(size=[2*r+2,r+1,ls_h+2]);
354 } 355 }
355 356
357 rotate([0,0,-45])
358 translate([0,0,ls_z-ls_h/2])
359 cube(size=[gearbox_d,gearbox_d,lever_thickness+lever_v_clearance]);
360 translate([0,0,ls_z-ls_h/2]) {
361 translate([mount_screwhead_d/2,0,0])
362 mirror([0,1,0])
363 cube(size=[gearbox_d,gearbox_d/2+1,lever_thickness+lever_v_clearance]);
364 }
365
356 // back side cutout 366 // back side cutout
357 // XXX: this is somewhat ugly and potentially bugged, 367 // XXX: this is somewhat ugly and potentially bugged,
358 // but I want to sleep. 368 // but I want to sleep.
@@ -376,14 +386,6 @@ module the_extruder(
376 cylinder(d=gearbox_d-mount_d,h=ls_h+2,center=true,$fn=fnd*(gearbox_d-mount_d)); 386 cylinder(d=gearbox_d-mount_d,h=ls_h+2,center=true,$fn=fnd*(gearbox_d-mount_d));
377 }//difference translate 387 }//difference translate
378 388
379 rotate([0,0,-45])
380 translate([0,0,ls_z-ls_h/2])
381 cube(size=[gearbox_d,gearbox_d,lever_thickness+lever_v_clearance]);
382 translate([0,0,ls_z-ls_h/2]) {
383 translate([mount_screwhead_d/2,0,0])
384 mirror([0,1,0])
385 cube(size=[gearbox_d,gearbox_d/2+1,lever_thickness+lever_v_clearance]);
386 }
387 //translate([-mount_d/2,-longwing,filament_elevation]) 389 //translate([-mount_d/2,-longwing,filament_elevation])
388 if(!tensioner) /* XXX: this seems to be bullshit, but it's so old, that it's historical bullshit */ 390 if(!tensioner) /* XXX: this seems to be bullshit, but it's so old, that it's historical bullshit */
389 translate([mount_d/2,-longwing,filament_elevation]) 391 translate([mount_d/2,-longwing,filament_elevation])