1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-07-31 20:10:36 +02:00

update doc

This commit is contained in:
Justin Lin
2022-03-28 15:39:58 +08:00
parent da2ba88798
commit 91dff32e23

View File

@@ -15,7 +15,7 @@ Returns the 1D [Perlin noise](https://en.wikipedia.org/wiki/Perlin_noise) value
use <util/rand.scad>;
use <noise/nz_perlin1.scad>;
seed = rand();
seed = rand(0, 255);
polyline_join([for(x = [0:.1:10]) [x, nz_perlin1(x, seed)]])
circle(.05);