PerlinNoise3

Inheritance:

Methods of PerlinNoise3:

Methods of PerlinNoise:

noise
double PerlinNoise3::noise(double x, double y, double z) const;

Description: Returns the noise function of the three inputs.

operator ()
double PerlinNoise3::operator ()(double x, double y, double z) const;

Description: Returns the noise function of the three inputs.

operator =
void PerlinNoise3::operator =(PerlinNoise3 const &copy);

Description: Makes an exact copy of the existing PerlinNoise object, including its random seed.

setScale
void PerlinNoise3::set_scale(double scale);

Description: Changes the scale (frequency) of the noise.

getSeed
unsigned long int PerlinNoise::get_seed(void);

Description: Returns a unique seed value based on the seed value passed to this PerlinNoise object (and on its current state).