# fast-uniform-noise

> Simplex noise scaled to a uniform distribution

Latest version **0.0.6** (published 2017-09-04) · ISC license · 0 weekly downloads

## Install

```sh
npm install fast-uniform-noise
pnpm add fast-uniform-noise
yarn add fast-uniform-noise
bun add fast-uniform-noise
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2017-09-04 |
| First published | 2016-03-23 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | a@modules.io |
| Maintainers | kazmer |
| Keywords | simplex, uniform, noise |

## Links

- npm: https://www.npmjs.com/package/fast-uniform-noise
- Repository: https://github.com/modulesio/fast-uniform-noise
- Homepage: https://github.com/modulesio/fast-uniform-noise#readme
- Issues: https://github.com/modulesio/fast-uniform-noise/issues
- npm.io page: https://npm.io/package/fast-uniform-noise

## Dependencies (3)

- [alea](https://npm.io/package/alea.md) 0.0.9
- [mkdirp](https://npm.io/package/mkdirp.md) ^0.5.1
- [fast-simplex-noise](https://npm.io/package/fast-simplex-noise.md) ^2.1.1

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.0.6 (latest) — 2017-09-04
- 0.0.5 — 2017-09-04
- 0.0.4 — 2016-04-03
- 0.0.3 — 2016-03-23
- 0.0.2 — 2016-03-23
- 0.0.1 — 2016-03-23

## README

Simplex noise scaled to a uniform distribution.

Based on https://github.com/joshforisha/fast-simplex-noise-js. Scales that algorithm via a pre-sampled histogram to generate noise with the same properties, only scaled to return values from a roughly uniform distribution.

```
const fastUniformNoise = require('fast-uniform-noise');
const noiser = new fastUniformNoise({
  // takes the same options as fast-simplex-noise
  random: Math.random
});
noiser.in2D(100, 100); // the only function currently supported
```

---
_Source: https://npm.io/package/fast-uniform-noise · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
