noisehx icon indicating copy to clipboard operation
noisehx copied to clipboard

Generate Perlin noise in Haxe.

NOTE: hxNoise is probably better, so use that instead!

About

noisehx is a teeny weeny library to generate Perlin noise. The code is a port of noisejs by Joseph Gentle, which is based on Stefan Gustavson's implementation.

Setting up

To install, use the command: haxelib git noisehx https://github.com/madhoe/noisehx.git

Example

// If no seed passed into constructor, a random one is used.
var perlin:Perlin = new Perlin();

for (x in 0...100)
{
	for (y in 0...100)
	{
		var value:Float = perlin.noise2d(x / 10.0, y / 10.0);
		// Do stuff with it...
	}
}