Noise Generator
Base class for all noise generators
Inheritors
Functions
Link copied to clipboard
Computes and returns the 1D noise for the given coordinate in 1D space
Computes and returns the 2D noise for the given coordinates in 2D space
Computes and returns the 3D noise for the given coordinates in 3D space
Generates noise for the 1D coordinates using the specified number of octaves and parameters
public double noise(double x, double y, int octaves, double frequency, double amplitude, boolean normalized)
Generates noise for the 2D coordinates using the specified number of octaves and parameters
public double noise(double x, double y, double z, int octaves, double frequency, double amplitude, boolean normalized)
Generates noise for the 3D coordinates using the specified number of octaves and parameters