Stealthy point-pattern sampling on the unit torus
Project description
blue-sampler
Generate stealthy point patterns — low-discrepancy, spectrally isotropic samples on the unit torus [0, 1)^D.
Stealthy patterns suppress long-range density fluctuations while remaining aperiodic. They are useful in rendering, quadrature, and computational physics wherever quasi-random, isotropic spatial coverage is needed.
Installation
pip install blue_sampler
Quick start
import blue_sampler as blue
# 10 000 points in 2-D
x = blue.sample(10_000)
blue.plot(x)
blue.plot_structure_factor(x)
# 3-D
x = blue.sample(5_000, D=3)
Supported dimensions
| D | Notes |
|---|---|
| 2 | Fast, recommended for exploration |
| 3 | ~3× slower than 2-D |
| 4 | Requires more iterations (set automatically by Config.auto) |
| 5 | Experimental |
Algorithm overview
The pipeline alternates between:
- Spatial gradient — short-range Gaussian repulsion via neighbour convolution on the torus.
- Spectral gradient — minimises the structure factor S(k) for k below a chosen cut-off, using a set of all the wave vectors within an integer half-ball.
- Grid assignment (SquareNet) — periodic re-assignment to a regular grid for efficient sparse local operations.
For N ≤ 3 000 a direct O(N²) bootstrap is used. For larger N a hierarchical strategy clones and refines a coarser solution.
License
MIT
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 blue_sampler-0.1.7.tar.gz.
File metadata
- Download URL: blue_sampler-0.1.7.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1adb45f14f71f39ef54bb0589616be4308911bd82fa26f0bbbf1a0816482b33e
|
|
| MD5 |
8ef0aebd3101543c5bc7be3962ea4024
|
|
| BLAKE2b-256 |
6f98fe2ad232e77d933e057d6858c3ecae384aba3176196bb57692d024b398bd
|
File details
Details for the file blue_sampler-0.1.7-py3-none-any.whl.
File metadata
- Download URL: blue_sampler-0.1.7-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b30556ca1eca51e646cb4b0f3e41f06c78c9b38e23afdd7e42e143cc384f6324
|
|
| MD5 |
180e9ecf26b75469df692240093cc9b9
|
|
| BLAKE2b-256 |
326ad2a335742112e48c33d65104f23c70127ccfe41beb592388262881fb3923
|