mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 06:08:31 +01:00
531 B
531 B
nz_perlin1s
Returns 1D Perlin noise values at x coordinates.
Since: 2.3
Parameters
xs
: The x coordinate.seed
: The random seed. If it's ignored, a randomized value will be used.
Examples
use <polyline_join.scad>
use <noise/nz_perlin1s.scad>
xs = [for(x = [0:.1:10]) x];
ys = nz_perlin1s(xs);
points = [for(i = [0:len(xs) - 1]) [xs[i], ys[i]]];
polyline_join(points)
circle(.05);