Atlas Engine
API Referenceaurora

Noise

Convenience entry points for the supported two-dimensional noise functions.

Module: aurora

Convenience entry points for the supported two-dimensional noise functions.

Declaration

export class Noise { ... }

Properties

seed

static seed: number;

initializedSeed

static initializedSeed: boolean;

Methods

perlin

static perlin(x: number, y: number): number;

simplex

static simplex(x: number, y: number): number;

worley

static worley(x: number, y: number): number;

fractal

static fractal(
            x: number,
            y: number,
            octaves: number,
            persistence: number,
        ): number;

On this page