From 07fd4e47e3982727ab1aa433f2302ceb3dbdc1e5 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 25 Jun 2019 18:05:26 +0800 Subject: [PATCH] fix variable name --- src/in_shape.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/in_shape.scad b/src/in_shape.scad index 47ce7801..307e423c 100644 --- a/src/in_shape.scad +++ b/src/in_shape.scad @@ -50,7 +50,7 @@ function _in_shape_sub(shapt_pts, leng, pt, cond, i, j) = function in_shape(shapt_pts, pt, include_edge = false, epsilon = 0.0001) = let( leng = len(shapt_pts), - edges = __lines_from(points, true) + edges = __lines_from(shapt_pts, true) ) _in_shape_in_any_edges(edges, pt, epsilon) ? include_edge : _in_shape_sub(shapt_pts, leng, pt, false, leng - 1, 0); \ No newline at end of file