Interface GetGaussianPointsOptions

interface GetGaussianPointsOptions {
    nbPoints?: number;
    sigma?: number;
    xSeed?: number;
    ySeed?: number;
}

Properties

nbPoints?: number

Number of points to generate.

Default

1024

sigma?: number

The standard deviation for the gaussian distribution.

xSeed?: number

Seed of the gaussian distribution for the x coordinates.

Default

0

ySeed?: number

Seed of the gaussian distribution for the y coordinates.

Default

1