simple ruby script for generating images of 2D fractal noise using Perlin noise or value noise
Installation
- git clone git@github.com:mjwhitt/fractal_noise.git
- cd fractal_noise/
- bundle install --path vendor/
Example Output
./bin/noise -a value -s 1138 -o 5 -w 256 -h 256
./bin/noise -a perlin -s 1138 -o 5 -w 256 -h 256
./bin/fractal_noise -a value -s 1138 -w 256 -h 256 -n
./bin/fractal_noise -a perlin -s 1138 -w 256 -h 256 -n
./bin/terrain -s 1138 -w 256 -h 256
See Also