SetupNoise

Family: Core · One form

What it does

SetupNoise takes frequency (a float), amplitude (a float), lacunarity (a float) and persistence (a float), and returns nothing.

Syntax

SetupNoise(frequency float, amplitude float, lacunarity float, persistence float)

Parameters

NameType
frequencyfloat
amplitudefloat
lacunarityfloat
persistencefloat

Every form returns

nothing

Example · generated

SetupNoise(1.0, 1.0, 1.0, 1.0)DO  Sync()LOOP

SetupNoise is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

200 commands in Core