mrowdy / noise_algorithms

A speed-improved perlin and simplex noise algorithms for 2D.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#NOISE ALGORITHMS!

Speed-improved perlin and simplex noise algorithms for 2D.

Based on noisejs by josephg

Original code example by Stefan Gustavson.

How to make noise:

int seed = 42
Perlin2 perlin = new Perlin2(seed);

int x = 100;
int y = 100;

double noise = perlin.noise(x, y);

Examples

About

A speed-improved perlin and simplex noise algorithms for 2D.

License:Other


Languages

Language:Dart 99.5%Language:CSS 0.5%