Skip to content

Commit

Permalink
Fixed spacing for different diameters
Browse files Browse the repository at this point in the history
  • Loading branch information
josefprusa committed Oct 10, 2010
1 parent 64da888 commit 1ff56ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pla-bushing.scad
Expand Up @@ -54,8 +54,8 @@ translate(v=[(outerDiameter/2)+1,(outerDiameter/2)+1,(lenght)/2]) cube(size = [o
} }


union(){ union(){
translate(v=[9,9,0]) bushing(); translate(v=[(rodsize+1),(rodsize+1),0]) bushing();
translate(v=[-9,9,0]) bushing(); translate(v=[-(rodsize+1),(rodsize+1),0]) bushing();
translate(v=[9,-9,0]) mirror([ 0, 1, 0 ]) bushing(); translate(v=[(rodsize+1),-(rodsize+1),0]) mirror([ 0, 1, 0 ]) bushing();
translate(v=[-9,-9,0]) mirror([ 0, 1, 0 ]) bushing(); translate(v=[-(rodsize+1),-(rodsize+1),0]) mirror([ 0, 1, 0 ]) bushing();
} }

0 comments on commit 1ff56ed

Please sign in to comment.