PythonPerlin

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

Installation

pip install pythonperlin

Quick start

import pylab as plt
from pythonperlin import perlin

dens = 32
shape = (8,8)
x = perlin(shape, dens=dens)
plt.imshow(x, cmap=plt.get_cmap('viridis'))