-rw-r--r-- | another.scad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/another.scad b/another.scad index 6ef7299..87121d2 100644 --- a/another.scad +++ b/another.scad @@ -426,49 +426,49 @@ module the_extruder( cube([bore_d+2,bore_d/2,knob_bore_l+4]); } } } difference() { union() { cylinder(d1=gearbox_d-2*ch,d2=gearbox_d,h=ch+epsilon,$fn=fnd*gearbox_d); translate([0,0,ch]) cylinder(d=gearbox_d,h=knob_h-2*ch+epsilon,$fn=fnd*gearbox_d); translate([0,0,knob_h-ch]) cylinder(d1=gearbox_d,d2=gearbox_d-2*ch,h=ch,$fn=fnd*gearbox_d); } for(a=[0:360/knob_indents:359]) rotate([0,0,a]) translate([0,gearbox_d/2,-1]) cylinder(d=knob_indent_d,h=knob_h+2,$fn=fnd*knob_indent_d); } } }//knob module module debug() { difference() { children(); if(debug) { // spring tensioner debug cutout - if(tensioner) // TODO: collaps copypasted transformations + if(tensioner) // TODO: collapse copypasted transformations translate([-gearbox_d/2,0,0]) translate([0,-longwing,ls_z]) rotate([0,-90,0]) translate([0,-lever_thickness/2-1,-gearbox_d]) cube(size=[body_h/2+1,lever_thickness/2+1,gearbox_d+2]); // lever axis debug cutout translate([mount_d/2,0,-1]) rotate([0,0,-45]) cube(size=[gearbox_d-mount_d,gearbox_d-mount_d,body_h+knob_h+2]); // idler debug cutout translate([0,0,ls_z]) place_idler() rotate([0,0,-45]) translate([0,0,-lever_thickness/2-epsilon]) cube(size=[(idler_d+idler_clearance)/2,(idler_d+idler_clearance)/2, lever_thickness+2*epsilon]); }//if debug }//difference } mirrorleft() debug() if(what=="lever") color("green",0.7) lever(); else if(what=="body") color("yellow",0.7) body(); else if(what=="knob") color("red",0.7) knob(); |