New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@trinkets/noise

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trinkets/noise

more random number generators

latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

@trinkets/noise

Random number generators for texture generation.

Perlin Noise

Perlin noise is a procedural, gradient noise generator, developed by Ken Perlin.

Useful for generating numbers that can be used for generating, say, random terrain on a map that has some credible transition from one elevation based terrain type to another.

This implementation started with the code found in Building Up Perlin Noise by Andrew Kensler. The default code is modified from the vanilla implementation described in the blog post to include a "jitter" by default which makes 2d integer coordinates very likely not always return 0.

Installation

npm install @trinkets/noise

Usage

import {perlin, factories} from '@trinkets/noise'
// or import * as random from '@trinkets/noise'

// Generate some value at an x, y coordinate.
console.log(perlin(1, 3))
console.log(perlin(1.1, 3.1))

// Build a new perlin noise method, using a configuration different from the default.
import {random} from '@trinkets/random'

const perlin2 = factories.perlin({
  // function() that, when called, returns an assumed random number between 0 and 1,
  // per the definition of Math.random. Here we use the one from @trinkets/random.
  random,
  // Jitter offsets the zero of the surflet from integer values of x, y.
  // False to turn off jitter (default is true).
  jitter = false,
})

Keywords

noise

FAQs

Package last updated on 17 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts