author | Michael Krelin <hacker@klever.net> | 2018-08-02 10:00:59 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-08-02 10:00:59 (UTC) |
commit | a04582d4c163c58bd779e02e3de624ccd1f643f4 (patch) (unidiff) | |
tree | 313e0ce03058ccb664d76c6fac51c43a34651e6b | |
parent | 5457897c14fd5bff296bdfed4a2744655585a3ab (diff) | |
download | extrudery-a04582d4c163c58bd779e02e3de624ccd1f643f4.zip extrudery-a04582d4c163c58bd779e02e3de624ccd1f643f4.tar.gz extrudery-a04582d4c163c58bd779e02e3de624ccd1f643f4.tar.bz2 |
another: make supports optional
-rw-r--r-- | another.scad | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/another.scad b/another.scad index 85715db..2be24e4 100644 --- a/another.scad +++ b/another.scad | |||
@@ -54,3 +54,4 @@ module the_extruder( | |||
54 | left=false, | 54 | left=false, |
55 | vitamins = true | 55 | vitamins = true, |
56 | supports = false | ||
56 | ) { | 57 | ) { |
@@ -147,4 +148,3 @@ module the_extruder( | |||
147 | cylinder(d=idler_d+idler_clearance*2,h=idler_h+idler_v_tolerance,center=true,$fn=60); | 148 | cylinder(d=idler_d+idler_clearance*2,h=idler_h+idler_v_tolerance,center=true,$fn=60); |
148 | // supports | 149 | if(supports) for(y=[-lsd/2+extrusion_width:(lsd-2*extrusion_width)/3:lsd/2-extrusion_width]) |
149 | for(y=[-lsd/2+extrusion_width:(lsd-2*extrusion_width)/3:lsd/2-extrusion_width]) | ||
150 | translate([-lsd/2-1,y-extrusion_width/2,-idler_h/2-idler_v_tolerance/2-1]) | 150 | translate([-lsd/2-1,y-extrusion_width/2,-idler_h/2-idler_v_tolerance/2-1]) |
@@ -276,3 +276,3 @@ module the_extruder( | |||
276 | 276 | ||
277 | intersection() { | 277 | if(supports) intersection() { |
278 | difference() { | 278 | difference() { |