1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 10:14:41 +02:00

union all

This commit is contained in:
Justin Lin
2021-11-22 18:02:10 +08:00
parent 0ec9f0e0e5
commit 90c6db16d5

View File

@@ -80,9 +80,11 @@ module polyline2d(points, width = 1, startingStyle = "CAP_SQUARE", endingStyle =
line2d(points[0], points[1], width, startingStyle, endingStyle);
}
else {
union() {
for(i = [1:leng_pts - 1]) {
line_segment(i);
}
joins(points, width / 2, leng_pts - 2, 0);
}
}
}