1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-07-31 20:10:36 +02:00

fixed name error

This commit is contained in:
Justin Lin
2019-06-13 20:19:01 +08:00
parent 3376b870a7
commit 14bbb3f205

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) = 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);