1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-04 13:57:33 +02:00

refactored

This commit is contained in:
Justin Lin
2017-05-26 20:03:27 +08:00
parent 96ea138de5
commit f77a8dfa57

View File

@@ -21,9 +21,9 @@ module hull_polyline2d(points, width) {
point2 = points[index]; point2 = points[index];
hull() { hull() {
translate(points[index - 1]) translate(point1)
circle(half_width); circle(half_width);
translate(points[index]) translate(point2)
circle(half_width); circle(half_width);
} }