1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-29 11:58:39 +01:00

add polygon_hull

This commit is contained in:
Justin Lin 2020-10-04 15:34:32 +08:00
parent 7726e5b9e7
commit cdd888ce6f

View File

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