Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 684 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 684 Bytes

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...
	}
}