PerlinNoise
Complete API reference for PerlinNoise, including constructors, attributes, virtual attributes, and methods.
Package: JAVARuntime
Category: Algorithms
Component: no
public class PerlinNoise
Constructors
| Signature | Description |
|---|---|
PerlinNoise() | Constructs a new instance of PerlinNoise. |
PerlinNoise(float) | Constructs a new instance of PerlinNoise with the specified scale. |
Attributes
| Name | Type | Description |
|---|---|---|
scale | float | Represents the scale value stored on this instance. Read or assign to update the property. |
Virtual Attributes
| Name | Type | Access | Description |
|---|---|---|---|
scale | float | get/set | Virtual attribute exposed by getScale. Access it like a field to read or write the underlying value. |
Methods
| Signature | Returns | Description |
|---|---|---|
noise(double, double) | double | Executes noise and returns after the underlying engine call finishes. |
noise(double, double, double) | double | Executes noise and returns after the underlying engine call finishes. |
noise(double, double, double, double) | double | Executes noise and returns after the underlying engine call finishes. |
noise(int, int) | float | Executes noise and returns after the underlying engine call finishes. |
noise(int, int, int) | float | Executes noise and returns after the underlying engine call finishes. |
noise(int, int, int, int) | float | Executes noise and returns after the underlying engine call finishes. |
noise(float, float) | float | Executes noise and returns after the underlying engine call finishes. |
noise(float, float, float) | float | Executes noise and returns after the underlying engine call finishes. |
noise(float, float, float, float) | float | Executes noise and returns after the underlying engine call finishes. |