summaryrefslogtreecommitdiff
path: root/another.scad
authorMichael Krelin <hacker@klever.net>2018-08-02 10:35:38 (UTC)
committer Michael Krelin <hacker@klever.net>2018-08-02 10:35:38 (UTC)
commitb717362a236ec1a95d54e7106f11e4f3e3e85b76 (patch) (side-by-side diff)
tree0ec8307df6bc8d1eb888d45c8656299df27cb1f9 /another.scad
parentdf23f0042d72bfcc7ba1638a2209545cbfe89825 (diff)
downloadextrudery-b717362a236ec1a95d54e7106f11e4f3e3e85b76.zip
extrudery-b717362a236ec1a95d54e7106f11e4f3e3e85b76.tar.gz
extrudery-b717362a236ec1a95d54e7106f11e4f3e3e85b76.tar.bz2
whitespace
Diffstat (limited to 'another.scad') (more/less context) (ignore whitespace changes)
-rw-r--r--another.scad2
1 files changed, 1 insertions, 1 deletions
diff --git a/another.scad b/another.scad
index 844dc3b..cd084ce 100644
--- a/another.scad
+++ b/another.scad
@@ -268,49 +268,49 @@ module the_extruder(
b=mount_d/2-a;
x=sqrt(pow(a,2)+pow(b,2));
translate([mount_d/2,0,ls_z])
intersection() {
r = x+idler_d/2+1;/* TODO: */
cylinder(r=r,h=ls_h,center=true);
translate([-r-1,0,-1]) cube(size=[2*r+2,r+1,ls_h+2]);
}
rotate([0,0,-45])
translate([0,0,ls_z-ls_h/2])
cube(size=[gearbox_d,gearbox_d,lever_thickness+lever_v_clearance]);
translate([0,0,ls_z-ls_h/2]) {
translate([mount_screwhead_d/2,0,0])
mirror([0,1,0])
cube(size=[gearbox_d,gearbox_d/2+1,lever_thickness+lever_v_clearance]);
}
//translate([-mount_d/2,-longwing,filament_elevation])
if(!tensioner) translate([mount_d/2,-longwing,filament_elevation])
rotate([0,-90,0]) difference() {
cylinder(d=spring_d+spring_d_clearance,h=spring_lc+spring_dl,$fn=PI*spring_d);
translate([0,0,spring_lc+spring_dl]) sphere(d=spring_d*3/4,$fn=PI*spring_d);
}
//sphere(d=spring_d*3/4,$fn=PI*spring_d);
- *difference() {
+ * difference() {
// spring support
translate([0,-longwing,filament_elevation])
sphere(d=spring_d*3/4,$fn=PI*spring_d);
}
}//difference
if(supports) intersection() {
difference() {
translate([0,0,ls_z-ls_h/2-epsilon])
cylinder(d=gearbox_d,h=ls_h+2*epsilon,$fn=2*PI*gearbox_d);
cylinder(d=pulley_d+pulley_clearance,h=body_h+1,$fn=2*PI*(pulley_d+pulley_clearance));
}
// supports
// TODO: hardcoded stuff below…
if(false) { // parallel
for(y=[-gearbox_d:4:gearbox_d])
translate([0,y-extrusion_width/2,0])
cube(size=[gearbox_d,extrusion_width,body_h]);
}else{ // radial
for(zr=[-65:(65+50)/7:50])
rotate([0,0,zr]) translate([0,-extrusion_width/2,0])
cube(size=[gearbox_d,extrusion_width,body_h]);
}