1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-19 04:51:26 +02:00

add polyhedron_hull

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

View File

@@ -0,0 +1,4 @@
module polyhedron_hull(points) {
// a workaround
hull() polyhedron(points, [[for(i=[0:len(points)-1]) i]]);
}