From 7726e5b9e7a0854763bc352a5dd7593982527e3d Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 4 Oct 2020 15:34:00 +0800 Subject: [PATCH] add polyhedron_hull --- src/experimental/polyhedron_hull.scad | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/experimental/polyhedron_hull.scad diff --git a/src/experimental/polyhedron_hull.scad b/src/experimental/polyhedron_hull.scad new file mode 100644 index 00000000..89c91461 --- /dev/null +++ b/src/experimental/polyhedron_hull.scad @@ -0,0 +1,4 @@ +module polyhedron_hull(points) { + // a workaround + hull() polyhedron(points, [[for(i=[0:len(points)-1]) i]]); +} \ No newline at end of file