A numpy-based noise generator
Project description
Table of Contents
Vectorized value & gradient noise with NumPy
Rumore is a lightweight Python library for procedural noise. It provides value noise and gradient noise in 1D/2D/3D plus octave summation of these (fractal Brownian motion, fBm).
The library does not implement Ken Perlin’s original algorithm directly, but its gradient noise produces visually similar results.
Install with PIP
pip install rumore
Install locally
Clone the repo, navigate to the directory and from there
pip install -e .
Examples
Import necessary stuff
from importlib import reload
import matplotlib.pyplot as plt
import numpy as np
import rumore
Generate some 1d gradient noise with different number of octaves
reload(rumore)
x = np.linspace(-10, 10, 200)
plt.figure(figsize=(5,4))
for i in range(1, 8):
plt.plot(x, rumore.grad_noise(x, octaves=i))
plt.show()
Perturb points along a circle with 2d noise
t = np.linspace(0, np.pi*2, 200)
x = np.cos(t)
y = np.sin(t)
r = rumore.grad_noise(x, y)*0.5+0.5
plt.figure(figsize=(4,4))
plt.plot(x*r, y*r)
plt.show()
Generate a grid of 2d noise value (a grayscale image)
reload(rumore)
x = np.linspace(0, 5, 300)
y = np.linspace(0, 3, 100)
img = rumore.noise_grid(x, y)
plt.imshow(img)
plt.show()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rumore-0.1.tar.gz.
File metadata
- Download URL: rumore-0.1.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f27dcc8d94934d629d648b1ed363afe91c3e8347f8c08e5b590a3f9808ea724
|
|
| MD5 |
61c7eeb7d25d4db3901fa90df2a3bc16
|
|
| BLAKE2b-256 |
4d9d72f76291194302aac707f5aafb7d9077a56456ebfe37937962eaf947a5cf
|
File details
Details for the file rumore-0.1-py3-none-any.whl.
File metadata
- Download URL: rumore-0.1-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b223d34f0c421e218e34999dfa7b14e7637d3325a4569646c74b8fcfe422a24
|
|
| MD5 |
506450f39cec002c95c4602c264e6281
|
|
| BLAKE2b-256 |
83da14780bc254cff5db260aac321416fc35a08d4addfacbcd14c4dfa197b92a
|