Skip to content

Commit

Permalink
Made changes to tripod design to fit better
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-bonanni committed May 10, 2012
1 parent ebe0a01 commit 31c8a82
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions iPhone Tripod/iphone-tripod.scad
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
IPHONE_WIDTH = 9.3;

module base() {
hull() {
cube(size = [32,32,1], center = true);
translate([0,0,7]) cube(size = [23,23,1], center = true);
difference(){
hull() {
cube(size = [32,32,1], center = true);
translate([0,0,7]) cube(size = [23,23,1], center = true);
}
translate([0,67,30]) sphere(r = 60, $fn = 100);
}
}

Expand All @@ -15,5 +18,6 @@ module holder(width) {
}
}


base();
translate ([0,0,IPHONE_WIDTH]) holder(IPHONE_WIDTH);

0 comments on commit 31c8a82

Please sign in to comment.