From d07440f2e97e22df96407f8956371efc4db2a1b8 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 4 Oct 2020 16:44:34 +0800 Subject: [PATCH] hull is not required. --- src/experimental/polygon_hull.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/experimental/polygon_hull.scad b/src/experimental/polygon_hull.scad index 60b6f3f2..2747e088 100644 --- a/src/experimental/polygon_hull.scad +++ b/src/experimental/polygon_hull.scad @@ -1,5 +1,5 @@ use ; module polygon_hull(points) { - hull() polygon(convex_hull(points)); + polygon(convex_hull(points); } \ No newline at end of file