BLOG · UPDATED 2026-06-28
Blue Noise Voronoi Patterns: Designed Randomness
Randomness can look cheap when it clumps. A plain random dot field often creates accidental blobs and empty deserts. Blue noise is the useful middle ground: the pattern still feels organic, but points keep enough distance from their neighbors to read as designed.
The Blue-Noise Voronoi Sampler Lab turns that idea into a practical browser workflow. It generates points, relaxes them into Voronoi cells, measures spacing quality and exports the same geometry as SVG, CSV, Markdown and JSON.
Why Blue Noise Feels Different
White-noise samples are independent, so clusters are common. Blue-noise samples suppress very short distances between points. Designers use that property for texture, stippling, particle layouts, terrain seeds, packaging patterns and procedural backgrounds.
The Practical Algorithm
The lab starts with best-candidate sampling. For each point, it tests several candidates and keeps the one with the best nearest-neighbor distance. It then applies Lloyd relaxation: build Voronoi cells, compute each cell centroid and move points toward those centroids.
Why Voronoi Cells Matter
A dot field only tells half the story. Voronoi cells reveal whether the spacing creates readable local territories. When cell areas vary too much, the pattern may still look uneven even if the dots seem acceptable at first glance.
What To Read First
Nearest-neighbor CV measures spacing variation. Cell-area CV measures how much the Voronoi regions differ. The blue-noise score combines both signals into a quick quality verdict. Lower variation usually means a cleaner design field.
How To Use The Lab
- Open the Blue-Noise Voronoi Sampler Lab.
- Run the poster sample first.
- Increase point count until the field density fits the design.
- Add one or two Lloyd iterations for cleaner cells.
- Export SVG for visuals and CSV/JSON for reproducible proof.
What This Does Not Prove
This is browser-based generative geometry for design, layout and teaching. It is not a certified Poisson-disk sampler, manufacturing specification, medical planning tool, legal advice, financial advice, traffic proof, ranking proof, revenue proof or AdSense approval proof.