1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-04-15 11:41:59 +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];
hull() {
translate(points[index - 1])
translate(point1)
circle(half_width);
translate(points[index])
translate(point2)
circle(half_width);
}