1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-03 03:33:08 +02:00
This commit is contained in:
Justin Lin
2020-03-17 14:29:27 +08:00
parent bcc352a6fd
commit ab53d858e2
6 changed files with 15 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
use <arc_path.scad>;
use <circle_path.scad>;
use <shape_circle.scad>;
use <path_extrude.scad>;
use <bezier_curve.scad>;
use <bspline_curve.scad>;
@@ -78,14 +78,14 @@ module dis_connected_klein_bottle(radius1, radius2, bottom_height, thickness, t_
rotate(-90)
path_extrude(
circle_path(radius1 + half_thickness),
shape_circle(radius1 + half_thickness),
tube_path
);
}
rotate(-90)
path_extrude(
circle_path(radius1 - half_thickness),
shape_circle(radius1 - half_thickness),
tube_path2
);
}