1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02:00

fixed name error

This commit is contained in:
Justin Lin
2019-06-13 20:19:35 +08:00
parent ad7819f1eb
commit 26db1cf25b

View File

@@ -18,5 +18,5 @@ function _in_polyline_sub(pts, pt, epsilon, iend, i = 0) =
);
function in_polyline(line_pts, pt, epsilon = 0.0001) =
_in_polyline_sub(line_pts, pt, epsilon, len(pts) - 1);
_in_polyline_sub(line_pts, pt, epsilon, len(line_pts) - 1);