getNoise

public static double getNoise(double xin)

Computes and returns the 1D unseeded simplex noise for the given coordinates in 1D space

Return

Noise at given location, from range -1 to 1

Parameters

xin

X coordinate


public static double getNoise(double xin, double yin)

Computes and returns the 2D unseeded simplex noise for the given coordinates in 2D space

Return

Noise at given location, from range -1 to 1

Parameters

xin

X coordinate

yin

Y coordinate


public static double getNoise(double xin, double yin, double zin)

Computes and returns the 3D unseeded simplex noise for the given coordinates in 3D space

Return

Noise at given location, from range -1 to 1

Parameters

xin

X coordinate

yin

Y coordinate

zin

Z coordinate


public static double getNoise(double x, double y, double z, double w)

Computes and returns the 4D simplex noise for the given coordinates in 4D space

Return

Noise at given location, from range -1 to 1

Parameters

x

X coordinate

y

Y coordinate

z

Z coordinate

w

W coordinate