1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00
This commit is contained in:
Justin Lin 2020-02-15 18:06:04 +08:00
parent 34a9e38e12
commit 37ee1d28c5

View File

@ -26,7 +26,7 @@ module tiled_line_mobius(size, twist, step, line_width = 1) {
);
for(line = lines) {
pts = [for(p = line) tf_ring(size, p, size[0], 360, twist)];
pts = [for(p = line) tf_ring(size, p, size[0], twist = twist)];
hull_polyline3d(pts, thickness = line_width);
}
}