1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-16 19:54:29 +02:00
This commit is contained in:
Justin Lin
2019-10-11 18:15:29 +08:00
parent e42d70c11e
commit 16637b098c

View File

@@ -100,9 +100,11 @@ module cutted_klein_bottle(radius1, radius2, bottom_height, thickness, t_step, f
difference() { difference() {
union() { union() {
translate([radius2 + thickness, 0, 0]) translate([radius2 + thickness, 0, 0])
rotate([0, 90, 0]) klein_bottle(radius1, radius2, bottom_height, thickness, t_step, fn); rotate([0, 90, 0])
klein_bottle(radius1, radius2, bottom_height, thickness, t_step, fn);
translate([-radius2 - thickness, 0, 0]) translate([-radius2 - thickness, 0, 0])
rotate([0, -90, 0]) klein_bottle(radius1, radius2, bottom_height, thickness, t_step, fn); rotate([0, -90, 0])
klein_bottle(radius1, radius2, bottom_height, thickness, t_step, fn);
} }
@@ -120,7 +122,3 @@ if(cut) {
} else { } else {
klein_bottle(radius1, radius2, bottom_height, thickness, t_step, fn); klein_bottle(radius1, radius2, bottom_height, thickness, t_step, fn);
} }