Skip to main content

PerlinNoise

Complete API reference for PerlinNoise, including constructors, attributes, virtual attributes, and methods.

Package: JAVARuntime

Category: Algorithms

Component: no


public class PerlinNoise

Constructors

SignatureDescription
PerlinNoise()Constructs a new instance of PerlinNoise.
PerlinNoise(float)Constructs a new instance of PerlinNoise with the specified scale.

Attributes

NameTypeDescription
scalefloatRepresents the scale value stored on this instance. Read or assign to update the property.

Virtual Attributes

NameTypeAccessDescription
scalefloatget/setVirtual attribute exposed by getScale. Access it like a field to read or write the underlying value.

Methods

SignatureReturnsDescription
noise(double, double)doubleExecutes noise and returns after the underlying engine call finishes.
noise(double, double, double)doubleExecutes noise and returns after the underlying engine call finishes.
noise(double, double, double, double)doubleExecutes noise and returns after the underlying engine call finishes.
noise(int, int)floatExecutes noise and returns after the underlying engine call finishes.
noise(int, int, int)floatExecutes noise and returns after the underlying engine call finishes.
noise(int, int, int, int)floatExecutes noise and returns after the underlying engine call finishes.
noise(float, float)floatExecutes noise and returns after the underlying engine call finishes.
noise(float, float, float)floatExecutes noise and returns after the underlying engine call finishes.
noise(float, float, float, float)floatExecutes noise and returns after the underlying engine call finishes.