Referencia noiseSeed()

noiseSeed()

Sets the seed value for the noise() function.

By default, noise() produces different results each time a sketch is run. Calling noiseSeed() with a constant argument, such as noiseSeed(99), makes noise() produce the same results each time a sketch is run.

Ejemplos

Sintaxis

noiseSeed(seed)

Parámetros

seed
Number:

seed value.

This page is generated from the comments in src/math/noise.js . Please feel free to edit it and submit a pull request!

Referencias Relacionadas