1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-10 16:54:23 +02:00
This commit is contained in:
Justin Lin
2022-03-06 22:50:47 +08:00
parent dbc918cfe1
commit d9a93b401e

View File

@@ -15,7 +15,7 @@ module polyhedron_hull(points, polyhedron_abuse = false) {
// It's workable only because `polyhedron` doesn't complain about mis-ordered faces.
// It's fast but might be invalid in later versions.
hull()
polyhedron(points, [[for(i = [0:len(points) - 1]) i]]);
polyhedron(points, [[each [0:len(points) - 1]]]);
}
else {
vts_faces = _convex_hull3(points);