1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 06:08:31 +01:00

update example

This commit is contained in:
Justin Lin 2021-05-15 09:28:01 +08:00
parent ce475031b0
commit 52696f518c

View File

@ -18,7 +18,7 @@ Join a set of points to make a [Delaunay triangulation](https://en.wikipedia.org
tris = [for(ti = tri_delaunay(points)) [for(i = ti) points[i]]];
linear_extrude(1)
for(t = tri_delaunay(points, ret = "TRI_SHAPES")) {
for(t = tris) {
polygon(t);
}