1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
Files
dotSCAD/src/polygon_hull.scad
2021-02-24 14:33:57 +08:00

15 lines
294 B
OpenSCAD

/**
* polygon_hull.scad
*
* @copyright Justin Lin, 2020
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-polygon_hull.html
*
**/
use <__comm__/_convex_hull2.scad>;
module polygon_hull(points) {
polygon(_convex_hull2(points));
}