1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 12:30:33 +02:00

update doc

This commit is contained in:
Justin Lin
2021-04-24 12:00:12 +08:00
parent 53c82c6308
commit 7991f86144
2 changed files with 1 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -13,9 +13,7 @@ Create cell shapes of Voronoi from a list of points.
use <hull_polyline2d.scad>;
use <voronoi/vrn2_cells_from.scad>;
xs1 = rands(-20, 20, 15);
ys1 = rands(-20, 20, 15);
points = [for(i = [0:len(xs1) - 1]) [xs1[i], ys1[i]]];
points = [for(i = [0:50]) rands(-100, 100, 2)];
cells = vrn2_cells_from(points);
for(i = [0:len(points) - 1]) {