How does this compute the Voronoi diagram?
For each seed point, it starts with the full panel rectangle and clips it by the perpendicular-bisector half-plane against every other seed point — the intersection of all those half-planes is that seed's cell. No sweep-line algorithm needed at these point counts.
What does relaxation do?
Each relaxation step moves every seed point to its current cell's centroid and recomputes the cells (Lloyd's algorithm). More steps make the cells more even and honeycomb-like; 0 steps keeps the raw random scatter.
Why change the seed?
The seed is the only thing that determines the random scatter. Changing it gives you a completely different layout at the exact same width, height, and cell count.
Does it cut shared edges twice?
No. Adjacent cells share an edge; this tool deduplicates those into a single cut line so your laser doesn't retrace the same seam.
Is anything uploaded?
No. The pattern is generated entirely in your browser and the tool is free with no sign-in.