JSPM

ts-perlin-simplex

0.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 88
  • Score
    100M100P100Q79867F
  • License MIT

Simplex Perlin noise

Package Exports

  • ts-perlin-simplex
  • ts-perlin-simplex/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ts-perlin-simplex) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

perlin-simplex

Simplex Perlin noise

This is RdStudio's TS Port of Sean McCullough's JS Port of Sefan Gustavson's Java implementation

Installation

npm install ts-perlin-simplex

Usage

var Simplex = require('perlin-simplex')
var simplex = new Simplex()
simplex.noise(x, y)
simplex.noise3d(x, y,z)

Example

node example/index.js