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-simplexUsage
var Simplex = require('perlin-simplex')
var simplex = new Simplex()
simplex.noise(x, y)
simplex.noise3d(x, y,z)Example
node example/index.js