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

update docs

This commit is contained in:
Justin Lin
2021-12-04 12:16:20 +08:00
parent 134ca1b364
commit 9478d1ec60
16 changed files with 50 additions and 50 deletions

View File

@@ -26,8 +26,8 @@ It's an implementation of [Worley noise](https://en.wikipedia.org/wiki/Worley_no
feature_points = [for(pt_angle = pts_angles) pt_angle[0] + half_size];
noised = [
for(y = [0:size[1] - 1])
for(x = [0:size[0] - 1])
for(y = [0:size.y - 1])
for(x = [0:size.x - 1])
[x, y, nz_cell(feature_points, [x, y])]
];