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:
@@ -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);
|
||||||
|
|
Reference in New Issue
Block a user