1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-06 06:47:46 +02:00

update comment

This commit is contained in:
Justin Lin
2022-04-20 23:02:02 +08:00
parent d5fa8807e0
commit a5887d3daa

View File

@@ -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);
}