1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
This commit is contained in:
Justin Lin
2020-10-04 17:26:54 +08:00
parent d07440f2e9
commit 172f033ba4

View File

@@ -1,4 +1,7 @@
module polyhedron_hull(points) {
// a workaround
// a workaround from http://forum.openscad.org/missing-features-tc30187.html
hull() polyhedron(points, [[for(i=[0:len(points)-1]) i]]);
// Will I implement Convex Hulls (3D)?
// https://www.cs.jhu.edu/~misha/Spring16/10.pdf
}