diff options
author | Robert "ar" Gerus <ar@bash.org.pl> | 2013-06-08 01:36:26 +0200 |
---|---|---|
committer | Robert "ar" Gerus <ar@bash.org.pl> | 2013-06-08 01:36:26 +0200 |
commit | 86dfac7b43664d114200418f0ad637ab1b008b1d (patch) | |
tree | f7ff2402988d3261104885468c4b25474c07be21 | |
parent | 758e44ddd9e083b3d01b8916fc392f2fa8c28c45 (diff) | |
download | 3dparts-86dfac7b43664d114200418f0ad637ab1b008b1d.tar.gz 3dparts-86dfac7b43664d114200418f0ad637ab1b008b1d.tar.bz2 3dparts-86dfac7b43664d114200418f0ad637ab1b008b1d.tar.xz 3dparts-86dfac7b43664d114200418f0ad637ab1b008b1d.zip |
lower resolution and removed the, not working properly anyway, print() function - replaced it with print1() and print2(), they have to be called separately.
-rw-r--r-- | ice_glass_forms/glass.scad | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/ice_glass_forms/glass.scad b/ice_glass_forms/glass.scad index c04363f..56939ae 100644 --- a/ice_glass_forms/glass.scad +++ b/ice_glass_forms/glass.scad @@ -1,4 +1,4 @@ -$fn = 500; +$fn = 50; module cup_shape(height, b_rad, t_rad) { cylinder(height, b_rad, t_rad, 0); @@ -124,13 +124,11 @@ module example() { inner_cup_form(70, 30, 40); } -module print(height, b_rad, t_rad) { +module print1(height, b_rad, t_rad) { outer_cup_form(height, b_rad, t_rad); - translate([(t_rad + 10)*2,0,height -1]) - rotate([0,180,0]) - inner_cup_form(height, b_rad, t_rad); } -print(70, 30, 40); - - +module print2(height, b_rad, t_rad) { + rotate([0,180,0]) + inner_cup_form(height, b_rad, t_rad); +} |