From 1d8f93c354df4effca90d355841d189ecdec7a27 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Mon, 06 Aug 2018 11:50:50 +0000 Subject: a bit of rework and addition of debug cutouts --- (limited to 'another.scad') diff --git a/another.scad b/another.scad index 3d804c1..03f3bf9 100644 --- a/another.scad +++ b/another.scad @@ -209,7 +209,6 @@ module the_extruder( } translate([0,-longwing,ls_z]) rotate([0,-90,0]) { if(!tensioner) finger_indent(d=lever_thickness-1,r=15); else { - if(debug) translate([0,-lever_thickness/2-1,-gearbox_d]) cube(size=[body_h/2+1,lever_thickness/2+1,gearbox_d+2]); mirror([0,0,1]) { translate([0,0,st_thickshell]) hull() for(o=[0,spring_d]) translate([0,-o,0]) @@ -310,12 +309,6 @@ module the_extruder( translate([0,0,spring_lc+spring_dl]) sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4); } - if(debug) { - translate([mount_d/2,0,-1]) - rotate([0,0,-45]) - cube(size=[gearbox_d-mount_d,gearbox_d-mount_d,body_h+2]); - } - }//difference if(supports) intersection() { @@ -385,6 +378,32 @@ module the_extruder( } }//knob module + module debug() { + difference() { + children(); + if(debug) { + // spring tensioner debug cutout + if(tensioner) // TODO: collaps 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 + } + + debug() mirrorleft() if(what=="lever") color("green",0.7) lever(); else if(what=="body") color("yellow",0.7) body(); -- cgit v0.9.0.2