diff options
author | Robert "ar" Gerus <ar@bash.org.pl> | 2013-06-07 23:21:53 +0200 |
---|---|---|
committer | Robert "ar" Gerus <ar@bash.org.pl> | 2013-06-07 23:21:53 +0200 |
commit | 758e44ddd9e083b3d01b8916fc392f2fa8c28c45 (patch) | |
tree | 2eb6a207b25347199c02346240103dc74648439c | |
parent | 878ba66893499238c185b21019c48b52311b3f7a (diff) | |
download | 3dparts-758e44ddd9e083b3d01b8916fc392f2fa8c28c45.tar.gz 3dparts-758e44ddd9e083b3d01b8916fc392f2fa8c28c45.tar.bz2 3dparts-758e44ddd9e083b3d01b8916fc392f2fa8c28c45.tar.xz 3dparts-758e44ddd9e083b3d01b8916fc392f2fa8c28c45.zip |
lower the inner part by 1mm for prints, otherwise it might try to print it in air
-rw-r--r-- | ice_glass_forms/glass.scad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ice_glass_forms/glass.scad b/ice_glass_forms/glass.scad index 51e040c..c04363f 100644 --- a/ice_glass_forms/glass.scad +++ b/ice_glass_forms/glass.scad @@ -126,7 +126,7 @@ module example() { module print(height, b_rad, t_rad) { outer_cup_form(height, b_rad, t_rad); - translate([(t_rad + 10)*2,0,height]) + translate([(t_rad + 10)*2,0,height -1]) rotate([0,180,0]) inner_cup_form(height, b_rad, t_rad); } |