-rw-r--r-- | another.scad | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/another.scad b/another.scad index 49833ec..3c4f27a 100644 --- a/another.scad +++ b/another.scad | |||
@@ -466,31 +466,32 @@ module the_extruder( | |||
466 | cube(size=[lsd*sqrt(2)/2+1,lsd*sqrt(2)/2+1, | 466 | cube(size=[lsd*sqrt(2)/2+1,lsd*sqrt(2)/2+1, |
467 | lever_thickness+2*epsilon]); | 467 | lever_thickness+2*epsilon]); |
468 | // pushfit debug cutout | 468 | // pushfit debug cutout |
469 | place_idler() | 469 | place_idler() |
470 | translate([-idler_d/2+filament_offset,0,ls_z]) | 470 | translate([-idler_d/2+filament_offset,0,ls_z]) |
471 | cube(size=[gearbox_d/2,gearbox_d/2+pf_h(pf),body_h-ls_z+knob_h+1]); | 471 | cube(size=[gearbox_d/2,gearbox_d/2+pf_h(pf),body_h-ls_z+knob_h+1]); |
472 | }//if debug | 472 | }//if debug |
473 | }//difference | 473 | }//difference |
474 | } | 474 | } |
475 | 475 | ||
476 | mirrorleft() | 476 | mirrorleft() |
477 | debug() | 477 | debug() |
478 | if(what=="lever") color("green",0.7) lever(); | 478 | if(what=="lever") color("green",0.7) lever(); |
479 | else if(what=="body") color("yellow",0.7) body(); | 479 | else if(what=="body") color("yellow",0.7) body(); |
480 | else if(what=="body.label") color("brown",0.7) body_label(); | 480 | else if(what=="body.label") color("brown",0.7) body_label(); |
481 | else if(what=="knob") color("red",0.7) knob(); | 481 | else if(what=="knob") color("red",0.7) knob(); |
482 | else if(what=="springpad") color("blue",0.7) springpad(); | 482 | else if(what=="springpad") color("blue",0.7) springpad(); |
483 | else if(what=="both") { | 483 | else if(what=="both") { |
484 | color("green",0.7) lever(); | 484 | color("green",0.7) lever(); |
485 | color("yellow",0.7) body(); | 485 | color("yellow",0.7) body(); |
486 | color("brown",0.7) body_label(); | 486 | color("brown",0.7) body_label(); |
487 | }else{ | 487 | }else{ |
488 | color("green",0.7) lever(); | 488 | color("green",0.7) lever(); |
489 | color("yellow",0.7) body(); | 489 | color("yellow",0.7) body(); |
490 | color("brown",0.7) body_label(); | ||
490 | color("red",0.7) knob(); | 491 | color("red",0.7) knob(); |
491 | color("brown",0.7) knob_label(); | 492 | color("brown",0.7) knob_label(); |
492 | color("blue",0.7) springpad(); | 493 | color("blue",0.7) springpad(); |
493 | } | 494 | } |
494 | } | 495 | } |
495 | 496 | ||
496 | the_extruder(what="*",left=false,debug=true); | 497 | the_extruder(what="*",left=false,debug=true); |