1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 09:44:16 +02:00

hull is not required.

This commit is contained in:
Justin Lin
2020-10-04 16:44:34 +08:00
parent cdd888ce6f
commit d07440f2e9

View File

@@ -1,5 +1,5 @@
use <experimental/convex_hull.scad>;
module polygon_hull(points) {
hull() polygon(convex_hull(points));
polygon(convex_hull(points);
}