1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-14 02:34:12 +02:00
This commit is contained in:
Justin Lin
2020-10-05 07:47:51 +08:00
parent c728bfb455
commit 744d0f4681
3 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
use <../__comm__/_convex_hull_impl.scad>;
use <../__comm__/_convex_hull.scad>;
function convex_hull(points) = _convex_hull(points);

View File

@@ -1,4 +1,4 @@
use <../__comm__/_convex_hull_impl.scad>;
use <../__comm__/_convex_hull.scad>;
module polygon_hull(points) {
polygon(_convex_hull(points));