Simplify Your Workflow: Search MiniWebtool.
Add Extension
> Voronoi Diagram Generator

Voronoi Diagram Generator

Generate Voronoi diagrams from a set of seed points online. Click the canvas to add or drag points, switch between Euclidean, Manhattan, Chebyshev and Minkowski distance metrics, pick from curated color palettes, watch cells animate into place, and export the result as SVG or PNG. Includes Lloyd relaxation, golden-spiral and hexagonal seed presets for crisp, even cells.

Voronoi Diagram Generator
Try a preset:
After generating, click the canvas to add points, drag to move, double-click to delete.

Embed Voronoi Diagram Generator Widget

✓ Generated

Euclidean — straight-line distance (classic) Scattered random · 18 seed points · Aurora (teal · violet · rose)

Metric euclidean
Cells 18
Avg area (px²)
Largest / smallest
720 × 480
click add point · drag move · dblclick delete · R relax once
📲

Install MiniWebtool App

Add to your home screen for instant access — free, fast, no download needed.

           

Want faster & ad-free?

About Voronoi Diagram Generator

The Voronoi Diagram Generator partitions a 2D plane into regions based on closeness to a set of seed points. Every point in the plane belongs to whichever seed is nearest, so the diagram looks like a patchwork of cells around the input points. This tool generates Voronoi diagrams interactively in your browser — drop new seeds with a click, drag any seed to redraw the cells in real time, switch between four distance metrics, and apply Lloyd relaxation to even out cell sizes. Export the result as crisp SVG or shareable PNG.

How it works: for every spot on the canvas, the algorithm finds the closest seed point and paints that spot with the seed's color. The boundary between any two cells is the perpendicular bisector of the segment between those two seeds — that is, the set of locations exactly equidistant from both. Three perpendicular bisectors meet at every cell-corner, which is also the center of a circle passing through three seed points (the empty circle property).

The four distance metrics — visualized

The shape of every Voronoi cell is determined by which distance metric you use. Each metric defines what "a circle" looks like — and that circle's shape is exactly the shape that bumps up against its neighbors to form cell boundaries.

Euclidean \(\sqrt{x^2 + y^2}\)
circle = circle
Manhattan \(|x|+|y|\)
circle = diamond
Chebyshev \(\max(|x|,|y|)\)
circle = square
Minkowski p=3 \((|x|^3+|y|^3)^{1/3}\)
circle = superellipse

That is why Manhattan-metric cells have only horizontal, vertical, and 45° edges, while Chebyshev cells have only horizontal and vertical edges — the boundary between two cells is always tangent to the shapes of those two "circles". Euclidean gives the classic curved-edged Voronoi everyone associates with the name. Minkowski p=3 is a mathematically elegant in-between case used in computational design where the L1 corners feel too harsh but the L2 circles feel too round.

What makes this generator different

✋ Real interactivity Click anywhere on the canvas to add a seed point; drag any seed to a new location and watch the cells flow with it; double-click a seed to delete. No other free Voronoi tool gives you live drag-to-edit feedback at this responsiveness — the diagram repaints under your finger in under 8 ms.
📏 Four metrics, one canvas Switch between Euclidean, Manhattan, Chebyshev, and Minkowski p=3 instantly via the pill switcher above the canvas. See the same point set produce wildly different cell shapes — a perfect teaching aid for distance metrics in courses on geometry, machine learning, or game design.
✿ Lloyd relaxation built in One-click Lloyd relaxation snaps each seed toward its cell centroid. Repeated passes produce a Centroidal Voronoi Tessellation — used in mesh generation, stippling, and image quantization to obtain visually uniform cells that tend toward a hexagonal packing.
🌱 Seven seed layouts Random scatter, Poisson-like uniform, square grid, hex grid, concentric rings, golden-ratio spiral, and three-cluster territories. The golden spiral matches phyllotaxis (sunflower seed packing). The hex grid is the natural fixed point of Lloyd relaxation. Every layout takes a reproducible random seed string.
🎨 Render-style options Filled cells (classic), wireframe edges (Delaunay-friendly view), distance heatmap (visualize the actual distance field), and stipple ink (artistic dotwork). Switch styles without re-generating — every style is rendered live from the same underlying classification.
⬇ SVG + PNG + Clipboard Vector SVG export wraps the cell colors as a single image plus the seed points as proper vector circles so they stay crisp at any zoom. PNG export for slides and social posts. Copy-PNG-to-clipboard for instant pasting into chat, docs, or design tools.

Where Voronoi diagrams show up

  • Cell-tower coverage maps — a phone connects to whichever tower it is closest to, which is exactly the Voronoi cell of that tower.
  • John Snow's 1854 cholera map — Snow drew the Voronoi cell around each water pump in Soho and counted cholera deaths inside each cell, isolating the contaminated Broad Street pump.
  • Procedural texturing — Worley noise (cellular noise) is used in everything from skin shaders to terrain generation in games like Minecraft and No Man's Sky.
  • Mesh generation — finite-element solvers prefer near-equilateral triangles, and the Delaunay triangulation (the dual of the Voronoi diagram) maximizes the smallest angle across all triangles.
  • Robot path planning — the edges of the Voronoi diagram around obstacle points are the safest paths a robot can take, because they maximize distance from every obstacle.
  • Stippling and halftoning — Lloyd-relaxed Voronoi diagrams produce visually pleasing point distributions used in artistic stippling and printer dithering.
  • Astronomy — galaxy super-clusters and the cosmic web display Voronoi-like structure thanks to gravitational clumping; Voronoi tessellation is a standard tool in galaxy-density estimation.
  • Crystallography — Wigner–Seitz cells (Voronoi cells around atoms in a lattice) define the primitive volume of every unit cell in solid-state physics.

Mathematical detail

Cell definition — for a finite set of seed points \(\{p_1, p_2, \dots, p_n\}\) and any metric \(d(\cdot,\cdot)\), the Voronoi cell of \(p_i\) is

\[ V_i = \{ x \in \mathbb{R}^2 \mid d(x, p_i) \le d(x, p_j),\ \forall j \neq i \} \]

so every cell is the intersection of half-spaces (for Euclidean metric) or half-planes (for L1/L∞). The cells partition the plane up to a measure-zero boundary set.

Centroidal Voronoi (Lloyd's fixed point) — at a CVT, every seed coincides with its cell's centroid:

\[ p_i = \frac{1}{|V_i|} \int_{V_i} x\, dA \]

Lloyd's algorithm iterates: classify pixels → move each seed to its cell's centroid → repeat. It always decreases the average within-cell second moment, so it converges. The hexagonal lattice is the global minimum for uniform density on a torus — which is why honeycombs are so efficient.

How to use this tool

  1. Pick a preset or set up the form. The preset chips at the top of the form are one-click starting points — Classic Cells, Honeycomb, City Blocks, Chess King, Golden Spiral, Ripples, Lloyd Relaxed, Wireframe, Stipple Ink, 3 Territories.
  2. Choose the distance metric. Euclidean for the classic look, Manhattan for blocky cells, Chebyshev for axis-aligned squares, Minkowski p=3 for rounded-square in-between cells.
  3. Click Generate. The diagram renders with an animated cell-growth reveal so you see how each seed "claims" its territory.
  4. Edit on the canvas. Click empty space to add a new seed point. Drag any seed dot to move it — the cells follow your finger in real time. Double-click a seed to delete it.
  5. Polish with Lloyd relaxation. Click the Lloyd relax button (or press R) to nudge every seed toward its cell's centroid. A few passes give you a visually uniform tessellation.
  6. Switch metric without losing your point set. Use the metric pills above the canvas — the same seeds, different distance rule, dramatically different cells.
  7. Export. SVG for vector use, PNG for raster sharing, or copy PNG straight to clipboard.

Tips for getting great-looking diagrams

  • For visually uniform cells, start with a Random or Uniform layout and apply 3–4 passes of Lloyd relaxation. You will see the cells converge toward a hexagonal pattern with very similar sizes.
  • For pop-art posters, use the Cluster layout with the Rainbow palette and turn on cell edges. The three territories produce a striking visual hierarchy with bold color blocks.
  • For technical-looking diagrams, use the Wireframe style on a Uniform layout — the clean black lines on white background read like a CAD drawing.
  • For organic, hand-drawn patterns, use the Stipple style — the algorithm reads cell edges as dotwork and produces a pen-and-ink look used in scientific illustration.
  • For mathematical clarity, switch to Manhattan or Chebyshev with a small point count (8–12 points). The right-angle edges make it easy to trace by hand why each cell has the shape it does.

Frequently asked questions

What is a Voronoi diagram?

A Voronoi diagram partitions a plane into cells based on which of a set of seed points each location is closest to. Every cell consists of all locations nearest to one specific seed. The cell boundaries are equidistant from two or more seeds.

How does this generator compute the diagram?

It uses brute-force per-pixel classification: for each pixel on the canvas it finds the nearest seed point under the chosen distance metric, then paints that pixel with that seed's color. The cost is O(W·H·N) but it is fully robust to degenerate inputs and trivially supports any distance metric.

What are the four distance metrics?

Euclidean is the straight-line distance giving the classic Voronoi look. Manhattan is the axis-aligned city-block distance. Chebyshev is the chess-king distance. Minkowski p=3 is a rounded-square in-between metric. Switching metrics on the same point set produces dramatically different cell shapes.

What is Lloyd relaxation?

Lloyd's algorithm repeatedly moves each seed point to the centroid of its current Voronoi cell. After several iterations the cells become visually uniform and tend toward a hexagonal honeycomb — the structure called a Centroidal Voronoi Tessellation.

Can I edit the points after generating?

Yes. Click anywhere on the canvas to add a new seed point. Drag any seed to move it — the diagram repaints continuously. Double-click a seed to delete it. The Reset button restores the original seed layout.

What is the difference between Voronoi and Delaunay?

They are graph duals. The Delaunay triangulation connects every pair of seeds whose Voronoi cells share an edge. Equivalently, three seeds form a Delaunay triangle if and only if no other seed lies inside the triangle's circumscribed circle.

Can I make the same diagram twice?

Yes. Type any string into the Random Seed field — the same string always reproduces the same initial point set. Combine that with the other form fields to share a permalink to an exact diagram.

What can I do with the exported SVG or PNG?

Free for personal and commercial use — diagrams generated by this tool are not watermarked or licensed. Use them for slides, blog illustrations, lecture notes, T-shirt prints, generative art prompts, or as base maps for further work in Illustrator or Inkscape.

Reference this content, page, or tool as:

"Voronoi Diagram Generator" at https://MiniWebtool.com// from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: 2026-05-20

Top & Updated:

Random PickerRandom Name PickerLine CounterBatting Average CalculatorRelative Standard Deviation CalculatorFPS ConverterSort NumbersInstagram User ID LookupMAC Address GeneratorERA CalculatorRemove SpacesWord to Phone Number ConverterRandom Truth or Dare GeneratorFeet and Inches to Cm ConverterMAC Address LookupFacebook User ID LookupJob FinderOPS CalculatorSum CalculatorSquare Root (√) CalculatorPercent Off CalculatorRandom Letter GeneratorSHA256 Hash GeneratorLog Base 10 CalculatorBitwise CalculatorNumber of Digits CalculatorSlope and Grade CalculatorVertical Jump CalculatorPhone Number ExtractorMP3 LooperImage ResizerSalary Conversion CalculatorOn Base Percentage CalculatorRandom IMEI GeneratorAudio SplitterRandom Quote GeneratorRoman Numerals ConverterAI Text HumanizerSlugging Percentage CalculatorCaffeine Overdose CalculatorNumber to Word ConverterRandom Poker Hand GeneratorRandom Loadout GeneratorMerge VideosSun, Moon & Rising Sign Calculator 🌞🌙✨Random Activity GeneratorDecimal to BCD ConverterBCD to Decimal ConverterText FormatterSaturn Return CalculatorRandom Movie PickerRandom Fake Address GeneratorCm to Feet and Inches ConverterWAR CalculatorVideo to Image ExtractorCompound Growth CalculatorOctal CalculatorInvisible Text GeneratorRandom Writing Prompt GeneratorBinary to Gray Code ConverterFile Size ConverterFirst n Digits of PiGrade CalculatorTime Duration CalculatorRandom Birthday GeneratorLove Compatibility CalculatorRandom Credit Card GeneratorWHIP CalculatorRandom Object GeneratorMaster Number CalculatorQuotient and Remainder Calculator⬛ Aspect Ratio CalculatorRandom Time GeneratorRandom Superpower GeneratorWord Ladder GeneratorSteel Weight CalculatorAdd Prefix and Suffix to TextRemove AccentDay of Year CalendarPercent Growth Rate CalculatorCompare Two StringsYouTube Channel StatisticsImage CompressorCM to Inches ConverterOutlier CalculatorBaby Growth Percentile CalculatorAdd Text to ImageClothing Size ConverterRandom Chess Opening GeneratorList of Prime NumbersArc Length CalculatorSum of Positive Integers CalculatorLeap Years ListCryptogram GeneratorGray Code to Binary ConverterBreak Line by CharactersStair CalculatorBattery Life CalculatorRandom Sound Frequency GeneratorEmail ExtractorURL ExtractorAI ParaphraserAI Punctuation AdderSHA512 Hash GeneratorDay of the Year Calculator - What Day of the Year Is It Today?Video CompressorBinary to BCD ConverterIP Address to Hex ConverterSort Lines AlphabeticallyHex to BCD ConverterBCD to Binary ConverterLottery Number GeneratorBCD to Hex ConverterMedian CalculatorStandard Error CalculatorList RandomizerAverage CalculatorModulo CalculatorPVIFA CalculatorReverse VideoHypotenuse CalculatorRemove Audio from VideoActual Cash Value CalculatorScientific Notation to Decimal ConverterNumber ExtractorAngel Number CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSHA3-256 Hash GeneratorAI Sentence Expander📅 Date CalculatorLbs to Kg ConverterHex to Decimal ConverterRandom Group GeneratorConvolution CalculatorMAC Address AnalyzerRandom String GeneratorRemove Leading Trailing SpacesAmortization CalculatorMarkup CalculatorPVIF CalculatorName Number CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterTwitter/X Timestamp ConverterYouTube Watch Time CalculatorTwitch Earnings CalculatorYouTube Shorts Monetization CalculatorFacebook Ad Cost CalculatorSocial Media ROI CalculatorSocial Media Post Time OptimizerSocial Media Username CheckerCTR CalculatorROAS CalculatorInfluencer ROI CalculatorForce CalculatorAcceleration CalculatorVelocity CalculatorMomentum CalculatorProjectile Motion CalculatorKinetic Energy CalculatorPotential Energy CalculatorWork and Power CalculatorDensity CalculatorPressure CalculatorIdeal Gas Law CalculatorFree Fall CalculatorTorque CalculatorHorsepower CalculatorDilution CalculatorChemical Equation BalancerStoichiometry CalculatorPercent Yield CalculatorEmpirical Formula CalculatorBoiling Point CalculatorTitration CalculatorMole/Gram/Particle ConverterIrregular Polygon Area CalculatorFrustum CalculatorTorus Calculator3D Distance CalculatorGreat Circle Distance CalculatorCircumscribed Circle (Circumcircle) CalculatorInscribed Circle (Incircle) CalculatorAngle Bisector CalculatorTangent Line to Circle CalculatorHeron's Formula CalculatorCoordinate Geometry Distance CalculatorVolume of Revolution CalculatorSurface of Revolution CalculatorParametric Curve GrapherRiemann Sum CalculatorTrapezoidal Rule CalculatorSimpson's Rule CalculatorImproper Integral CalculatorL'Hôpital's Rule CalculatorMaclaurin Series CalculatorPower Series CalculatorSeries Convergence Test CalculatorInfinite Series Sum CalculatorAverage Rate of Change CalculatorInstantaneous Rate of Change CalculatorRelated Rates SolverOptimization Calculator (Calculus)Gradient Calculator (Multivariable)Divergence CalculatorCurl CalculatorLine Integral CalculatorSurface Integral CalculatorJacobian Matrix CalculatorNewton's Method CalculatorRREF Calculator (Row Echelon Form)Matrix Inverse CalculatorMatrix Multiplication CalculatorDot Product CalculatorCross Product CalculatorVector Magnitude CalculatorUnit Vector CalculatorAngle Between Vectors CalculatorNull Space CalculatorColumn Space CalculatorCramer's Rule CalculatorMatrix Diagonalization CalculatorQR Decomposition CalculatorCholesky Decomposition CalculatorMatrix Power CalculatorCharacteristic Polynomial CalculatorBayes' Theorem CalculatorF-Test / F-Distribution CalculatorHypergeometric Distribution CalculatorNegative Binomial Distribution CalculatorGeometric Distribution CalculatorExponential Distribution CalculatorWeibull Distribution CalculatorBeta Distribution CalculatorSpearman Rank Correlation CalculatorFisher's Exact Test CalculatorContingency Table CalculatorOdds Ratio CalculatorRelative Risk CalculatorEffect Size CalculatorPermutations with Repetition CalculatorModular Exponentiation CalculatorPrimitive Root CalculatorPerfect Number CheckerAmicable Number CheckerTwin Prime FinderMersenne Prime CheckerGoldbach Conjecture VerifierMöbius Function CalculatorEgyptian Fraction CalculatorFibonacci Number CheckerDigital Root CalculatorPartition Function CalculatorBoolean Algebra SimplifierKarnaugh Map (K-Map) SolverLogic Gate SimulatorGraph Coloring CalculatorTopological Sort CalculatorAdjacency Matrix CalculatorRecurrence Relation SolverInclusion-Exclusion CalculatorLinear Programming SolverTraveling Salesman Solver (TSP)Hamiltonian Path CheckerPlanar Graph CheckerNetwork Flow Calculator (Max Flow)Stable Marriage Problem SolverFirst-Order ODE SolverSecond-Order ODE SolverDirection Field / Slope Field PlotterEuler's Method CalculatorBernoulli ODE SolverSystem of ODEs SolverGroup Theory Order CalculatorRing and Field CalculatorJordan Normal Form CalculatorMatrix Exponential CalculatorTensor Product CalculatorFast Fourier Transform (FFT) CalculatorZ-Transform CalculatorNumerical Integration CalculatorTOML to JSON ConverterJSON to CSV ConverterXML to JSON ConverterSQL to MongoDB Query ConverterCSS Flexbox PlaygroundCSS Grid GeneratorJWT GeneratorBcrypt Hash Generator / CheckerColor Code Converter (All Formats)Git Command Generator.env File GeneratorLorem Picsum / Placeholder Image GeneratorText to Binary/Hex/ASCII ConverterSyllable CounterSentence CounterParagraph CounterSpeaking Time CalculatorReading Time CalculatorWhitespace VisualizerStrikethrough Text GeneratorTorque Converter (Nm, ft-lb, kgf-cm)Data Transfer Rate ConverterFuel Efficiency ConverterAstronomical Unit ConverterRing Size ConverterPaper Size ReferenceGas Mileage CalculatorEV Range CalculatorEV Charging Time Calculator0–60 / Quarter Mile CalculatorCar Lease CalculatorVehicle Towing Capacity CalculatorExposure Triangle CalculatorCrop Factor CalculatorMegapixel to Print Size CalculatorPhoto File Size EstimatorMusic BPM TapperMusic Key TransposerVideo Bitrate CalculatorSeed Germination Rate CalculatorFertilizer Calculator (NPK)Raised Bed Soil CalculatorFrost Date CalculatorLawn Fertilizer CalculatorCompost Calculator (C:N Ratio)Solar Panel CalculatorSolar ROI CalculatorHome Energy Audit CalculatorAppliance Energy Cost CalculatorWater Usage CalculatorElectricity Generation Cost CalculatorHeat Loss CalculatorFlight Distance CalculatorTravel Budget CalculatorJet Lag CalculatorPacking List GeneratorTip Splitter (Advanced)Lease vs Buy CalculatorHourly Rate Calculator (Freelancer)Invoice Late Fee CalculatorESPP CalculatorStock Split CalculatorOptions Probability CalculatorDollar to Gold ConverterBeam Load CalculatorPipe Flow CalculatorBolt Torque CalculatorGravel, Sand & Topsoil CalculatorRandom Sentence GeneratorRandom Paragraph GeneratorRandom Math Problem GeneratorRandom Bible Verse GeneratorRandom Cat/Dog Name GeneratorRandom Debate Topic GeneratorBody Recomposition CalculatorAlcohol Calorie CalculatorMedication Dosage CalculatorPace to Calories CalculatorHydration CalculatorTrain Meeting Problem SolverAge Word Problem SolverMixture Problem SolverWork Rate Problem SolverDistance-Speed-Time Triangle CalculatorCoin Word Problem SolverNumber Bonds GeneratorCarry and Borrow VisualizerTimes Tables QuizMental Math TrainerRoman Numeral Math SolverEgyptian Multiplication CalculatorVedic Math Tricks CalculatorRussian Peasant MultiplicationSoroban Abacus SimulatorAnnuity Payout CalculatorReverse Mortgage CalculatorVariable Annuity CalculatorFixed Indexed Annuity CalculatorBond Convexity CalculatorBond Duration Calculator (Macaulay & Modified)Forward Rate CalculatorMortgage Recast CalculatorTreasury Inflation-Protected Securities (TIPS) CalculatorStock Beta CalculatorTreynor Ratio CalculatorSortino Ratio CalculatorDoppler Effect CalculatorSpring Constant CalculatorPendulum Period CalculatorCentripetal Force CalculatorAngular Velocity CalculatorMoment of Inertia CalculatorSnell's Law CalculatorCoulomb's Law CalculatorElectric Field CalculatorMagnetic Field of Wire CalculatorLens Equation CalculatorA/B Test Significance CalculatorA/B Test Sample Size CalculatorConversion Rate CalculatorCustomer Lifetime Value (CLV) CalculatorCustomer Acquisition Cost (CAC) CalculatorChurn Rate CalculatorRetention Rate Cohort CalculatorNPS (Net Promoter Score) CalculatorPareto Chart GeneratorSix Sigma Process Capability CalculatorTessellation GeneratorSpirograph GeneratorVoronoi Diagram GeneratorDelaunay Triangulation GeneratorL-System Fractal GeneratorMandelbrot Set ExplorerJulia Set Generator
×

Do us a favor and answer 3 quick questions

Thank you for participating in our survey. Your input will help us to improve our services.

Where exactly did you first hear about us?

What is your favorite tool on our site?

if Other, please specify:

How likely is it that you would recommend this tool to a friend?

NOT AT ALL LIKELYEXTREMELY LIKELY

Likely score: (1-10)