noiseSeed()
Math / RandomDescription
Sets the seed value for noise().
Syntax
void noiseSeed(int seed)
Parameters
| Name | Type | Description |
|---|---|---|
| seed | int | seed value |
Returns
voidRelated
Under the Hood
From Processing.h:
void noiseSeed(int seed);
Under the Hood
From Processing.cpp:
void PApplet::noiseSeed(int s) { initPerlin((unsigned int)s); }