PythonWorley

Python implementation of Worley noise - to seamlessly tile in any dimensions

Installation

pip install pythonworley

Quick start

import pylab as plt
from pythonworley import worley

dens = 64
shape = (8,4)
w, c = worley(shape, dens=dens, seed=0)
plt.imshow(w[0].T, cmap=plt.get_cmap('Greys'))