From a5887d3daa0c75df0546b33736dd7e9cb6eb70a5 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Wed, 20 Apr 2022 23:02:02 +0800 Subject: [PATCH] update comment --- src/polygon_hull.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/polygon_hull.scad b/src/polygon_hull.scad index a15a57ed..7d6d2b54 100644 --- a/src/polygon_hull.scad +++ b/src/polygon_hull.scad @@ -12,7 +12,7 @@ use <__comm__/_convex_hull2.scad>; module polygon_hull(points, polygon_abuse = false) { if(polygon_abuse) { - // It's workable only because `polyhedron` doesn't complain about mis-ordered faces. + // It's workable only because `polygon` doesn't complain about mis-ordered points. // It's fast but might be invalid in later versions. hull() polygon(points); }