noise

public double noise(double x, double y, double z, double w, double frequency, double amplitude)

Generates noise for the 3D coordinates using the specified number of octaves and parameters

Return

Resulting noise

Parameters

x

X-coordinate

y

Y-coordinate

z

Z-coordinate

w

W-coordinate

frequency

How much to alter the frequency by each octave

amplitude

How much to alter the amplitude by each octave


public double noise(double x, double y, double z, double w, double frequency, double amplitude, boolean normalized)

Generates noise for the 3D coordinates using the specified number of octaves and parameters

Return

Resulting noise

Parameters

x

X-coordinate

y

Y-coordinate

z

Z-coordinate

w

W-coordinate

frequency

How much to alter the frequency by each octave

amplitude

How much to alter the amplitude by each octave

normalized

If true, normalize the value to [-1, 1]