mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-13 18:24:28 +02:00
union all
This commit is contained in:
@@ -80,9 +80,11 @@ module polyline2d(points, width = 1, startingStyle = "CAP_SQUARE", endingStyle =
|
|||||||
line2d(points[0], points[1], width, startingStyle, endingStyle);
|
line2d(points[0], points[1], width, startingStyle, endingStyle);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
for(i = [1:leng_pts - 1]) {
|
union() {
|
||||||
line_segment(i);
|
for(i = [1:leng_pts - 1]) {
|
||||||
|
line_segment(i);
|
||||||
|
}
|
||||||
|
joins(points, width / 2, leng_pts - 2, 0);
|
||||||
}
|
}
|
||||||
joins(points, width / 2, leng_pts - 2, 0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user